Bicep - Flex Consumption Plan not available in this region (but it is in Portal)
Hi, I'm trying to deploy my bicepscript but I am getting this error: { "status": "Failed", "error": { "code": "DeploymentFailed", "target":…
Azure Functions
How can I stop the duplication of logs in Application Insights?
I recently upgraded my function app (premium service plan) to use .NET 8 Isolated Worker Model. Since doing this, I'm receiving multiple logs for an error i.e. My custom error (which I want to keep) An error with "EventName: 0" with nothing…
Azure Functions
I can't upload my azure function
I’m having trouble deploying my local Azure Function. The deployment logs show the message: "No HTTP triggers found", and I suspect this might be the reason why it’s failing. Additionally, I can’t create a new Azure Function from the Azure…
Azure Functions
The functions in fxdev_python are now returning 500 Internal Server Error after upgrade to python 3.11
I upgraded my python from 3.9 to 3.11 in my azure function app after seeing this error. Upgrade your app to newer version as Python 3.9 will reach EOL on 10/31/2025 and will no longer be supported I followed the below steps from the documentation …
Azure Functions
RabbitMQ Trigger Support in Azure Functions Python v2
Hi, I’m currently working on Azure Functions in Python and was planning to use a RabbitMQ trigger. However, I’ve just realised that the RabbitMQ trigger appears to only be available in the v1 programming model. Could you please confirm whether there is…
Azure Functions
Error "We were not able to load some functions in the list due to errors" on brand new created func app
I have just created a new Function APP Consuption Python 13 preview Linux I am getting the error message "We were not able to load some functions in the list due to errors" right after creation on the functions section. Also, any function I…
Azure Functions
How can i run selenium script in functions app
How can i run a selenium script on Azure. How would i store the chrome executalble file and access it in my function script?
Azure Functions
Missing Application Setting Alert in function app diagnose and solve problems link. the configuration is for a event hub namespace connection though app works fine.
we are seeing an critical Alert as Missing Application Settings detected with message as : The following Application Settings are referenced in Function bindings but not configured in the Function App. This can cause execution errors Function:…
Azure Functions
Getting package error from Microsoft.Azure.Functions.Worker.Sdk having hard dependency on Newtonsoft.Json v10.0.2
I am getting the below nuget feed error when I use Microsoft.Azure.Functions.Worker.Sdk for my azure functions. The feed - lists package 'Newtonsoft.Json.10.0.2' but multiple attempts to download the nupkg have failed. The feed is either invalid or…
Azure Functions
How to deploy using AzureFunctionApp@1 configured to use Managed Identity
We deploy multiple .net azure functions to linux runtime consumption plans in Azure. Yesterday we got an issue where one of our functions stopped working. Looking at the overview of the resource in the azure portal we saw a warning about a SAS-token that…
Azure Functions
How to reduce cold start latency in Azure Functions on Consumption Plan?
I’m developing Azure Functions on the Consumption Plan, and I’m facing significant cold start delays (5-10 seconds) when the function triggers after being idle. This impacts the responsiveness of HTTP-triggered functions in my app. What I’ve tried so…
Azure Functions
How do I run a CPU and memory-intensive Azure Function App with Tesseract OCR inside a Docker container on Azure, utilizing worker processes
I have deployed a Function App on an Azure Container App environment with the following configuration: 4 CPU, 8 GB RAM Minimum replicas: 1 Maximum replicas: 10 FUNCTIONS_WORKER_PROCESS_COUNT: 2 PYTHON_THREADPOOL_THREAD_COUNT: 1 In the code, I’m using a…
Azure Functions
Do My Azure Functions executed automatically on changing function app python version or adding environment variables in Azure Function because of restart
Hi, Do My all Azure Functions executed automatically on following occasions changing function app python version in azure function configuration On adding environment variables in Azure Function because of restart. On clicking restart in azure…
Azure Functions
Azure Function trigger from Service Bus not fired
Hi there, we have an Azure Function App with a trigger from Service Bus. The issue is that all messages end up in the Dead Letter Queue rather than being delivered. Function App written in JavaScript using v4 Programming Model uses connection string…
Azure Functions
Storage Account Blob Trigger Event could not be enabled (MinimumTlsVersion is not supported by webhook endpoint)
Hi everyone, I'm trying to enable the "Created Blob Trigger" event for my Storage Account Datalake Gen 2 in order to trigger a Function App. I followed the official documentation about this topic, but the last step fails with the following…
Azure Functions

How to set the PowerShell stack in an Function app by Terraform ?
I succesfully provisioned a Azure Function App by terraform. How can I define that the Azure Function App should be of Stack "PowerShell"? This is my current Terraform code: resource "azurerm_storage_account"…
Azure Functions
Blob Trigger in Azure Function skips all subsequent blobs after first run, even with different names/paths/ETags
I have an Azure Function App running in Azure that uses: Blob Trigger → to detect image uploads Queue Trigger → to process those images after enqueueing from the Blob Trigger Both triggers are in the same Function App, using the same storage account for…
Azure Functions
Function with daily timer trigger suddenly stopped
I have a Function App, with numerous Timer triggered functions. They all have been working without issue, but today I noticed that one of the daily functions has not run since 7/24. No errors, and it's still listed as enabled. I found a help article…
Azure Functions
How to generate secure random results for a coin flip game using Azure Functions?
I’m building a simple coin flip game where the user clicks a button to get “Heads” or “Tails.” Currently, the random result is generated in JavaScript on the client side, but I’m concerned this can be manipulated by users. I want to move the random…
Azure Functions

How to use client certificate authentication in Azure Function App?
I will create Function App (Functions Premium). I will deploy a Java (Spring Boot) project in the Function App, and clients can access the project in my Function App via HTTPS. Additionally, clients must have a certificate and use a key when accessing…