Why does the new deployment slot from a production slot of my Function App show 'Runtime version is Error'?
I recently created a new deployment slot from an existing production slot in my Azure Function App, but the new slot is displaying an error stating that the runtime version is invalid. How can I resolve this issue and ensure the new slot is configured…
My Azure function is not visible in Function app
I have deployed my Azure function v2 in python using Azure devops and able to see the function in Function app with base function, but I have business logic with multiple functions deployed but then function is not visible in Functions app. tried many…
Azure Function 4 deployment fails with "Encountered an error (BadGateway) from host runtime."
A few days ago, I started getting the infamous "BadGateway" errors when I attempted to deploy a new version of my Azure Function. Yes, it is the dreaded "Syncing Triggers" issue...(debug log below) This was working before, I made…
Reject subset of events in function app using nodejs
From the docs, I can see that using C# it's possible to set autoCompleteMessages to false and manually complete or abandon an individual event when receiving a batch of events. Can anyone confirm that this same functionality does not exist in nodejs? If…
I have issue in accessing the azure free for students subscribtion
I am student but i can't able to access the azure free for student even though it verified my academic details but it show me a page like this
Azure Function App with Stripe - Receive Request but empty headers in JavaScript
Hi team, I have a function app connecting with Stripe with a customized handler: app.http('Stripe-Connect', { methods: ['GET', 'POST'], authLevel: 'anonymous', handler: async (request, context) => { context.log("🔹 Received…
How to extend timeout of Azure Python Function with env variables
I had a new Azure Python Function on dedicated plan. I wanted to increase the timeout without modifying host.json.
Downloading app content of a function App gives error 500, not enough space on the disk
Hi there. I have a NodeJS Function App in Azure deployed via Azure Pipelines with SST. The App Service plan is a pay as you go whith sku: Y1 and Operating System: Windows I wanted to download app content including app settings in order to run the…
How to fix the pyodbc not found error in Azure function app
Our application, which had been running smoothly for over a month, suddenly stopped working, displaying a "pyodbc not found" error. Despite trying various solutions, including version changes, we've been unable to resolve the issue. This error…
Azure Function App Read-only on functions
How can I create a custom role in Azure that allows users to view Function App code in read-only mode? Currently, users with the built-in Reader role can see the Function App but get an error requiring write permissions when trying to view the actual…
How to get post requests to work for an Azure Python Web App?
I've been working on a web app and have been able to get it to send back an image when running it locally, but I can't get it to work once I have deployed it to Azure. Whenever I try to run a post request, I get the following error, that shows up on the…
Hololens 2, Azure, Unity, and MRTK
I have a digital twin case, I need to scan a real car with Hololens 2 and then store it in Azure as a 3D model to stream it to another colleague. I need to be able to update it from my Hololens and to put annotations and drawings. Appreciate your help :)…
Closed XML.Reports Function app file not saving
I'm trying to write a function app which generates a report using ClosedXML.Reports. The output template is quite simple and only uses the summaryabove template. The function app is able to create a text file and save it to blob storage successfully. But…
Minimal durable entity function - can't get it to work: The function 'xxx' doesn't exist
I copied this repository to set up a minimal durable entity function project but I am getting errors. https://github.com/Azure/azure-functions-durable-python/tree/dev/samples/counter_entity Code structure like this, and I want to stress that I didn't…
Unable to get a user assigned managed identity working with Function App
Hello everyone, Currently I'm trying to configure a very simple Function App using PowerShell that takes a JSON body payload with 2 parameters, a resource group name and a location, then it creates a resource group with that information. The problem that…
Can I connect a webhook from an external cloud platform to an Azure Durable Function app deployed in a private network?
We have a usecase to deploy azure durable function app(HTTPStarter based) in private network and then provide its access endpoint to the webhook configuration in another product's cloud instance. So, is it possible to send data to azure durable app…
Azure Functions can't load the proper managed identity to receive message from Service Bus
I made the change based on this instruction to use managed identity to receive message from service bus https://learn.microsoft.com/en-us/azure/azure-functions/functions-identity-based-connections-tutorial-2, but seeing errors of "Unable to load the…
Azure Function: Issues with BlobTrigger Configuration and Namespace Reference Errors
I'm encountering persistent issues with configuring a BlobTrigger in my Azure Function and need some assistance. Here's a summary of the problem and the steps taken so far: Problem Description: Trying to set up an Azure Function that processes .gz log…
Managed API Function not recognized when building manually
Because of the permission issue when using the API build in the AzureStaticWebApp@0 task, I am skipping the API build and build it in an earlier task. Here is my task: - task: AzureStaticWebApp@0 inputs: app_location: "/dist" …
DevOps deployment of function app to flex consumption
Hello, I have updated my old function app to use the flex consumption plan and I've updated the Azure Functions Deploy task in DevOps to have the flex consumption plan option marked as true, but when I run the deployment it says 'The Deployment Type…