VS Code and Azure Functions: Zip Deploy Successful but No Functions Found
I successfully completed a zip deployment for my Azure Functions using VS Code, but no functions are recognized in the Azure portal. Here are the steps taken: Installed Azure Tools and Azure Functions Core Tools via (Ctrl + Shift + P). Followed the setup…
Azure Functions
passing authentication token from 1 HTTP triggered function to another
Hi I am using durable functions monitor in injected mode and not using the inbuilt authentication provided in function app. Rather I am generating auth code and auth token using Microsoft identity platform auth code flow. I have below function that when…
Azure Functions
The Function App build is failing with DirectoryNotFound exception
I am using Azure.Function.Worker.SDK version 1.17.2 but when I try to build Function App locally I am getting the following error Severity Code Description Project File Line Suppression State Error (active) MSB4018 The…
Azure Functions
Possible thread pool starvation detected & DrainMode mode enabled
I have an Azure Function that runs using .net core 8 and which uses Premium plan, now i found the following messages inside the logs:- 2025-05-01T22:51:12Z [Warning] [HostMonitor] Host CPU threshold exceeded (96 >= 80) 2025-05-01T22:51:24Z …
Azure Functions
ERROR: The specified module 'ExchangeOnlineManagement' was not loaded because no valid module file was found in any module directory
I have created an Azure function under consumption plan, that uses PowerShell, then inside the run.ps1, i added this code, to remove a user from all the groups assigned to the user:- param($Timer) Import-Module ExchangeOnlineManagement Import-Module…
Azure Functions
Cannot delete virtual network, subnet in use by /serviceAssociationLinks/legionservicelink and cannot be deleted
I am trying to delete a Virtual Network with 1 subnet. That subnet that was at one point in use by a Flex Consumption Function App Virtual Network Integration. The Function App has long since been deleted, but I cannot delete the Virtual Network due to…
Azure Functions
How to avoid Azure app service from being inadvertently terminated?
I have an Azure Function triggered by a service bus message on a topic/subscription, that calls an API that further calls OpenAI APIs. Sometimes the API layer is abruptly terminated which causes the Azure function to return with a 500 Internal Server…
Azure Functions
Upgraded to .net 8, using one my simple utility c# dll, that will be used in azure function. Getting below error any suggesstions?
AzureFunction - BlobTrigger Microsoft.Azure.WebJobs.Host: Error indexing method 'PushNotificationAndroid'. Microsoft.Azure.WebJobs.Extensions.Storage: Method not found: 'System.String…
Azure Functions
Is this possible to run a Power Shell script unattended inside Azure Function using Azure Function managed identity
I have this PowerShell script , to get all the groups assigned to a user as owner or as members and then remove the user from those groups. # Connect to Microsoft Graph with required delegated scopes Connect-MgGraph -Scopes "User.Read.All",…
Azure Functions
Unable to trigger function app while using managed identity for the storage account connection
I am trying to create an Azure Function of BlobTrigger type, which needs to be triggered on dropping files in the storage account say filessa. Due to policy restriction the storage account cannot use shared access key. I am unable to trigger the function…
Azure Functions
Azure Function Host Crashes When Parsing PDF Documents with Docling Library
We've started using this python library docling to parse documents. Locally, that works perfectly. On Azure though, we experience the issue that parsing PDFs fails and makes the function host crash. This results in a downtime for the whole function,…
Azure Functions
VS Code and Azure Functions: Zip Deploy Successful but No Functions Found
I successfully completed a zip deployment for my Azure Functions using VS Code, but no functions are recognized in the Azure portal. Here are the steps taken: Installed Azure Tools and Azure Functions Core Tools via (Ctrl + Shift + P). Followed the…
Azure Functions
Jwt Bearer Authentication in a function app
Hi, Is there an example available of implementing jwt bearer authentication in a function app ? I am using the durable function monitor tool https://github.com/microsoft/DurableFunctionsMonitor in injected mode in isolated worker model. I want to…
Azure Functions
Function App Function Execution Count at zero
I have a function app with several functionthat is triggered when there's a new file in a blob storage. For some reason the metric "Function Execution Count" keeps going to zero. I've checked individual function and have seen they have…
Azure Functions
Function app constant app scale on bulk service bus message.
Hi, There is a bulk of messages in service bus subscription and each message is supposed to be processed by single function app instance. When we push bulk in service bus subscription then function app scale up 11 instance only. Max limit is set to 100…
Azure Functions
Unable to deploy azure function app - is not allowed to create or update the serverfarm
The function app deployment errors out with the error below. I found this relevant threat, but was unable to find a solution. https://learn.microsoft.com/en-us/answers/questions/1657059/the-subscription-is-not-allowed-to-create-or-updat { …
Azure Functions
I want to my azure function from v1 to v4 my current dotnet framework is 4.8 need suggestion which version should I go 4.8 or 8 or 9
I want to my azure function from v1 to v4 my current dotnet framework is 4.8 need suggestion which version should I go 4.8 or 8 or 9. I am try to migrate to 4.8 with v4 but as per microsoft guide it mentioed to add output type as exe and mine was class…
Azure Functions
no quota available for azure function apps in certain region
At first I wasn't able to deploy any azure function app, since then Microsoft Support helped me to resolve that issue in this threat: https://learn.microsoft.com/en-us/answers/questions/2263219/unable-to-deploy-azure-function-app-is-not-allowed I am…
Azure Functions
Detected SubscriptionNotAllowedToCreateOrUpdateServerfarm for ServerFarm
"message": "The subscription 'SUB ID' is not allowed to create or update the serverfarm."
Azure Functions
Disable Dependency Telemetry logs, Python
I have a function app that has a durable function built with python. here is my host.json { "version": "2.0", "functionTimeout": "00:30:00", "logging": { "logLevel": { …