Intermittent issue in Function app
The issue occurs intermittently and one is captured at 8.36AM on 01-Nov-2024. The error log shows issue with redis client but we are not using redis client in this function. Also the flow of execution abruptly exits which is not going to catch block…
How to fix a bad gateway status when trying to create a function app
This is the failure code: { "status": "Failed", "error": { "code": "Forbidden", "message": "The subscription '1ac4d6cb-e3ad-4d74-aa81-6d7895a1abde' is not allowed to create or update the…
.NET 8 upgrade from .NET 6 of my azure function app didn't upgrade .azurefunctions
Hi, I recently upgraded from .NET 6 to .NET 8 using .NET upgrade assistant. Though I can see the Target Framework from visual studio as .NET 8, The file myProjectTriggerApp > bin > Debug > net8.0 > .azurefunctions > function.deps still…
When running an dotnet Azure HttpTrigger Function App locally, how do I control log level
The full question I have is posted https://stackoverflow.com/staging-ground/79166352 I have an Azure Function created from the HttpTrigger template and then add in LogError to LogTrace messages in the constructor. No matter what I set in the…
Error after updating Azure Functions Core Tools to version 4.0.6594
4.0.6594 [INFO] Azure Functions Core Tools found. Azure Functions Core Tools Core Tools Version: 4.0.6594 Commit hash: N/A +48490a7ee744ed435fdce62f5e1f2f39c61c5309 (64-bit) Function Runtime Version: 4.1036.1.23224 Could not load file or assembly…
Diagnosing Azure Functions Failures
The team is currently deploying a number of projects and have a number of issues when it comes to silent failures in my function app which results in all functions not loading or showing up in Azure functions portal. This seems to be a common issue with…
Storage account configuration for Azure functions
I want to create an Azure Functions free tier account, but apparently a storage account is required for that. What is the cheapest storage account configuration I can make? Also, the billing is based on usage, right? I dont want to use the storage…
Azure Functions using Powershell - How to pre-load powershell modules to be used during execution.
Hello Geeks, Here's the scenario - I'm executing Azure functions (PowerShell code) using time trigger running on Consumption App service plan. I would like to execute this function every minute. The functions basically uses bunch of Azure powershell…
Upgrading Azure Functions from V3 to V4 with JavaScript and TypeScript Files
How can the Azure Function version be upgraded from V3 to V4 when both JavaScript and TypeScript files are maintained in the same folder structure? Below is the folder structure for the V3 model. Additionally, how should the path value for the main key…
Azure Function App Error: Failed to Fetch - TypeError in Extend Function
Hello everyone, I'm encountering an issue while testing my Azure Function App, specifically in the "extend" function. I'm receiving the following error: Error: {"message":"Failed to fetch","stack":"TypeError:…
Failed to update web app settings: Number of Web workers must be greater than zero
Hello, I am trying to update FTP state to FTP Only under Settings = Configurations. Getting error as 'Failed to update web app settings: Number of Web workers must be greater than zero. I even increased the instance and still this didn't worked.
Getting error No HTTP triggers found during Azure Function deploying
Hi, I'm getting No HTTP triggers after deploying Azure logic function, It's operating locally tried to run sync APIs, but still .. Python 3.11
I am trying to delete a resource Group, that holds Azure AI Studio and no other resource. But I am unable to do it, have tried different ways
This is a wired scenario i am stuck in, I am unable to delete a resource group because the AI Studio in it is not deleting. It say it has Failed to delete resource group new-poc: Deletion of resource group 'new-poc' failed as resources with identifiers…
Securely Routing Graph Events to Azure Function via Event Grid
I have a partner topic for receiving Graph events. Currently, there is an Azure Function endpoint set to handle these events that is open to all networks. However, the goal is to restrict traffic to only within a VNET and from Graph events. If the Azure…
Is it possible to create an azure function programmatically thru .NET and C# and creating through either Visual Studio UI nor Azure portal?
I want to know if it is possible to create a new Azure function programmatically through C# code + .NET app. Note: For my use case, I do not want to create the Azure function via (1) Azure portal (2) Using Visual Studio publish This question is related…
No Reponse from ADF pipelines
Hi everyone. We are using Azure.ResourceManager.DataFactory library to run ADF pipelines. Here is the flow: Azure Web App triggers Azure Function that runs ADF pipeline In common case a pipeline run request takes ~2 seconds including sending request from…
Storage account connection string does not exist
I have a function app which is reading from an Azure Queue, originally it is just using a connection string to connect to the storage account which works, but I am migrating it to use an identity based solution. This is the guide I have been…
SWA Azure Function backend returns 500 after 45 seconds, even though function keeps running afterwards
Hi there, I'm working on a Static Web App using the integrated Azure Functions backend. I have a function which takes about 2.5 minutes to complete due to a large database upload in the function. I am having an issue where after exactly 45 seconds, the…
Azure function -storage
Hi, As part of learning, I am trying to create Azure function, while doing it I don't see "Storage" tab and I continue to create AZ function. But from my learnings I remember that storage account required for AZ functions. So, Do I need to…
How to rewind failed orchestration instance of durable azure function
I am working on migration of azure function from .net core 3.1 to dot net 8 and also migration from in-process to isolated worker process. In the .net core 3.1 version of function, we are using 'RewindAsync' function of IDurableOrchestrationClient from…