What is the best way to implement timeout restrictions in an Azure Function orchestrator?
I have a Function App written in python with multiple durable function entities such as orchestrator and activity functions to implement the fan-out fan-in pattern in my code. It collects some data for multiple different sources through different…
Azure Functions
How to share code over multiple function apps? (PYTHON)
What is the recommended way to reuse the same code between multiple function apps without having to go through a lot of ugly steps to make deployment work? I have a directory setup which is super simple to test and verify this concept: workspace …
Azure Functions
Python Azure Function don't load the functions
I have created an example code that it's not working loading in my azure resource. In local is working fine, but in azure I never see the function running. function_app.py import azure.functions as func from src.code import test app =…
Azure Functions
Azure function app error - Unhandled exception. Grpc.Core.RpcException
I have an Azure function app hosting multiple functions. The new function is failing to execute with the below error message. Unhandled exception. Grpc.Core.RpcException: Status(StatusCode="Unavailable", Detail="Error reading next…
Azure Functions
Migrate Azure function from in-process model to isolated model
I have an Azure function app running on the in-process model. Now I'm migrating it to the isolated model. I did the code change required and changed the FUNCTIONS_WORKER_RUNTIME to dotnet-isolated and .NET Version change to .NET Isolated. Project cs…
Azure Functions
Optimization Azure Function and Azure Container Registry Utilization
As a part of AI deployment, 5 Azure Functions had been deployed and corresponding 5 container registries were attached. Now the count has been reduced to one. The credits utilization amount has not decreased to 1/5th of the previous one and it is still…
Azure Functions
Deployment failing - trackingID 79cbb4e9-457b-458c-bcf1-84b0e483a64a
Getting this error when trying to create a function app using blob storage. The same service is configured in a QA environment the same way we are trying to create in a development environment. { "status": "Failed", …
Azure Functions

How to get per function runtime metrics in a functions app
My team is developing a functions app which consists of three functions of varying types. Broadly speaking, the setup looks like this: A starter function of type httpTrigger starts a durable function when the user submits a request. The durable…
Azure Functions
To Deploy multiple functions within a single function app service
I want to create multiple HttpTrigger functions under a single function app service. For example, there are 2 functions, automation1 and automation2, they should be deployed under same function app service but they should be allowed to be called…
Azure Functions
My Node Azure Function app has stopped working after deployment
After a successful deployment from GitHub to staging instance, the Node function app @azure/functions@4.7 does not list any of the functions available: Stopping and restarting does not fix it. Environment…
Azure Functions
Flex Consumption - Kudu-SyncTriggerStep 500 Error
So I accidently deployed a function app with an HTTP trigger that had a duplicate Function Name in the function attributes. I now get the following error in Azure even after removing the duplicate function name and I'm not able to deploy an updated…
Azure Functions
Can you please help me to retrieve my Microsoft azure certificate az 900
Hi team, please help me retrieve my microsoft azure fundamentals certificate. MS ID - MS0990640335
Azure Functions

Issue with Azure Functions Flex deployment: Function triggers synchronization fails
Having issues when deploying .NET 9 Isolated Function App to Flex Consumption. The app gets packaged and deployed to blob storage, I can see it there. But looking at the portal->my-function-app->Functions overview (where it lists all functions) it…
Azure Functions
Cannot review the uploaded files after initial commit in VSCode
After initial function app deployment. I return to the Web Portal and cannot review the uploaded files. I am shown 'This function has been edited through an external editor. Portal editing is disabled.' There is another issue for me is that I cannot…
Azure Functions
Can't see logs in azure function deployes as azure container apps
Hello. I have azure function deployed to azure container apps with timer trigger that runs every min. Application insights is connected, by i don't see any logs in azure portal.
Azure Functions

Azure Function App not able to deploy
Getting this error, even after giving permission and custom permissions of web farms { "status": "Failed", "error": { "code": "Forbidden", "message": "The subscription…
Azure Functions
Function app logs are not being output
For some function apps, call logs and Application Insights logs are not being output after June 19, 2025. Logs were output before June 19, 2025. In addition, logs are being output without any problems for other function apps in the same tenant. The…
Azure Functions
azure function ManagedIdentity request exception during GetToken
Since 28. April some of our azure functions suddenly started to get the following exception when calling the system-assigned ManagedIdentity getToken endpoint using the ManagedIdentityCredentials class. ManagedIdentityCredential authentication…
Azure Functions
Azure Function MCP trigger fails to respond to initialize request from VS Code MCP client
We have a vanilla Azure Function created with a vanilla hello world McpToolTrigger. It works great when called locally from VS Code MCP Client but it keeps failing with "Waiting for server to respond to initialize request..." when calling with…
Azure Functions
How to call built-in auth protected azure app service APIs from Azure Function
Hi, I have an azure app service resource that hosts the backend means REST APIs and it has built-in authentication with Microsoft identity provider. I want to utilize or call these apis from azure function how to do it? what are the concrete steps for…