How to fix "Your app is currently in read only mode because new Node programming model experience is in preview."

Danny Bui 5 Reputation points
2024-02-18T23:07:04.8866667+00:00

Function app says "Your app is currently in read only mode because new Node programming model experience is in preview."

Running v4 and node 18. Using azure blob storage trigger. Metrics show function being called on file upload, however database is not being updated like it is supposed to by the function call. The function works properly locally using azurite.

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,384 questions
Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
2,489 questions
Azure Database for MySQL
Azure Database for MySQL
An Azure managed MySQL database service for app development and deployment.
726 questions
{count} vote

1 answer

Sort by: Most helpful
  1. Pramod Valavala 20,591 Reputation points Microsoft Employee
    2024-02-22T14:22:44.86+00:00

    @Danny Bui It is safe to ignore the message you are seeing. It is simply calling out the In-Portal Editing is not supported with the new programming model introduced.

    As for your actual code itself, it would be best to check the following

    • Ensure you have all the required app settings configured
    • If you are using Managed Identity, ensure the same is set up for your Function App and required roles are assigned
    • Check the logs for more detailed errors if any
    0 comments No comments