Azure Functions Deployment Successful, but No Functions in Azure Portal
Hallo. Ich brauche Hilfe mit dem Deployment meiner function für Azure Function App. Viele Grüße und danke im vorraus.
Why do we have AZFD0013 warning for our Azure Functions (isolated model) app which is set to FUNCTIONS_WORKER_RUNTIME of "dotnet-isolated"?
We are deploying function apps to Azure using FUNCTIONS_WORKER_RUNTIME "dotnet-isolated". Each function app references "Microsoft.Azure.Functions.Worker.Sdk" directly, and through a shared project references…
Connect Azure CosmosDB using Managed Identities from Azure Function App both locally and on Azure
I create a Managed Identity for a Function app and assigned it to DocumentDB Account Contributor by following the two sections below …
How to fix "Deployment validation failed" while trying to deploy a function app?
Trying to create a function app - But keep receiving the following error. Tried different regions and the issue persists. After researching a fix, it looks like I NEED to go through support to fix as this is a MS issue not yet patched.. Upgraded my plan…
Azure function app on consumption plan not processing messages from service bus queue
Hello, I'm encountering an issue with my C# .NET Isolated function app (consumption plan) and its interaction with an Azure Service Bus queue. Specifically, one particular queue is not triggering the associated function app when messages are placed into…
Function App cannot start blob trigger
Hi, we have a function app which uses a Blob Trigger. We have created a blob trigger function in our subscription, but we cannot get the function to work. We examined the storage account logs and can confirm that a blob upload to the storage account…
No Automatic Log Messages in Exercise Step 3 (Timer Function)
Hello, I can't seem to see timer function logs being generated as described in the step 3 of the exercise. Mine shows " No new trace in the past n min(s)."... Step 3 -->Observe that a new message arrives every 20 seconds in the log pane.
Website issues occur in flex consumption plan with virtual network integration
What we want to achieve In Azure Functions (flex consumption plan), we want to open the Functions website (https://{Functions Name}.azurewebsites.net) in the state that virtual network integration is configured. ■ Event When opening the Functions…
Azure Durable Functions v3.1.0 - Orchestration not working
Hi everyone, We're trying to upgrade our Orchestration phase to use v3.1.0 of the Durable Functions, but we're having errors such as "A function can only be registered during app startup" when we try using the…
Azure function does not trigger
Hello, we have an Azure Function on plan EP2, which is triggered by a queue. Sometimes the function is not triggered until we visit the function in the Azure Portal. The queue maxPollingInterval is set to 2 seconds. There should always be an instace…

Failed to open siteversion.txt. ZipFS setup failed. Error: 0x80070002
I'm trying to get blue green deployments to work via azure pipelines. Slot swaps succeed from a pipeline perspective but this always leaves Production throwing 503's. When I check kudu event logs I can see the error in the title. I have gone ahead and…
Issue with EventHub and Http triggers in node typescript
I'm having an issue using node with typescript and azure functions v4. As soon as I define an event hub triggers, the rest of the http triggers show as being functional but don't work and give the following error in app insights: The 'httpTrigger1'…
Use AzureFunctionApp@2 or func azure in pipeline
This question may seem trivial, as AzureFunctionApp@2 is the official task for Azure DevOps (ADO) pipelines. However, I find myself pondering this issue because the func azure functionapp publish command offers several features that are particularly…

When will Flex Consumption support .NET 9 in South Central US, West US 2, and West US 3?
.NET 9 was GA on November 12, 2024 and available through most of the App Service and Azure Functions platform right away. [As of December 6, 2024], it is supported on the new Flex Consumption plan type, except for in South Central US, West US 2, and West…
We have problem with adding Function App in sponsored subscription
Hi, We have problem with adding Function App in sponsored subscription, there is error: The subscription '4b1d1f30-7f98-43eb-9bcf-0e4cd1867efa' is not allowed to create or update the serverfarm. Can you check what is an issue and unblock us?
Function app suddenly quit triggering
Diagnose and Solve Problems shows that it quit working because "Shutting down host due to presence of C:\home\site\wwwroot\FAILED TO INITIALIZE RUN FROM PACKAGE.txt. File content: Run From Package Initialization failed." However, to my…
Problems with flex consumption function
I have a flex consumption function hosting a queue trigger function. The function was deployed via azure cli using func azure functionapp publish <nnn> and the hosts.json file: { "functionTimeout": "00:45:00", …

Azure Function that uses scrapy returns 404 with correct URL
Hello, I have the following Function that uses Scrapy in order to crawl data from a specific site import azure.functions as func import os import datetime import json import logging import subprocess import sys …
How do I limit Concurrency of a Durable Azure Function with a Servicebus Queue Trigger?
Hello, I have an Azure Function in python that is sending requests to an API. This API has limits on concurrent requests so I want to limit the number of concurrent calls from my Azure Function to four. I am currently using the following…
Getting Unexpected end of request content error in HTTPStarter based azure durable function app
We have created a HTTPStarter based azure durable function app. In this, we are getting 499 (Unexpected end of request content) error frequently between the successful executions. When request is sent to the function app via webhook it results in error…