18,062 questions
-2
votes
0
answers
23
views
Azure Function App (Python 3.11 on Linux) stopped detecting all functions after Flex Consumption update – even Basic plan does not work [closed]
I’m running into a blocking issue with a Python 3.11 Azure Function App on Linux.
Until this week my Function App contained three HTTP-triggered Python functions and everything worked perfectly. After ...
-3
votes
0
answers
30
views
Flex Consumption Per-Function Scaling: Can One Service Bus Trigger Cause OOM in Another? [closed]
We have an Azure Function App running on the Flex Consumption plan, configured with 512 MB memory. We understand that Flex uses per-function scaling, meaning each Service Bus trigger should scale ...
1
vote
0
answers
53
views
Azure Function with RabbitMQ Trigger - Queue not found in localhost
For local development I want to connect my Azure Function to a locally running RabbitMQ instance and run everything locally. But the queue is not found, even though I made sure it exists (see ...
Tooling
0
votes
0
replies
28
views
Creating an PDF report via function app in Azure Data Factory (ADF)
How can I create PDFs for members in an ADF workflow using an Azure Function App? The function needs to invoke an SSRS report URL. How can we call the SSRS URL from ADF—should we use a Web Activity or ...
0
votes
0
answers
25
views
Azure Durable functions in Running state for durable entities
I'm troubleshooting why async tasks within the durable entity hang forever. My entity looks like this
public MyEntity : IMyEntity {
[JsonIgnore]
private MyService _myService;
[JsonProperty]
public ...
0
votes
0
answers
37
views
Azure function apps - Unable to see print logs on function app when deployed onto Azure
New to python programming and azure function apps, managed to deploy my first function app, when I run it from my local development environment, it logs useful information which gives me a good ...
Advice
0
votes
0
replies
35
views
Refactoring Azure Functions .dll files to external project makes it fail for durable functions, why
I have build my project using Azure Functions, my project has core projections which hold core projects
so I have
MyProject.Core
<PackageReference Include="Microsoft.Azure.Functions.Worker&...
Best practices
0
votes
0
replies
22
views
Azure function app not logging to application insights when network security perimeter is active
Situation
I have a function app (time triggered) (fa), connected to an app insights instance (ai).
ai is part(?) of a log analytics workspace (law) that is behind a network security perimeter (nsp)
So ...
0
votes
0
answers
68
views
Sending Messages between Applications using Azure Signal R in Default Mode
I have a client application (Blazor, dual Server/Wasm project, .NET 9.0) that is connected to Azure Signal R and has a hub defined. Within the confines of this app, using a testing page, I can send ...
1
vote
1
answer
34
views
Azure Function app Cron scheduler - missing runs
My function app is a timer triggered app and uses this cron expression for scheduling. 10 */6 * * * On most days it runs fine, but looking at the trace logs in Application insights it does not run for ...
0
votes
0
answers
29
views
How to Identify the End User from an MCP server called by a Copilot Studio Agent
I have an MCP server hosted in an Azure Function. The server is added as a tool to a Copilot agent using an MCP APi key, and works fine. But, I'd like to get the copilot user context to do ...
Best practices
1
vote
2
replies
91
views
How to handle errors in Blazor WebAssembly?
I have been using this ServiceResponse model to communicate data between an Azure Function backend and a Blazor WebAssembly frontend:
public class ServiceResponse<T>
{
public T? Data { get; ...
Advice
4
votes
2
replies
808
views
.NET 10 not available for Azure Functions in Visual Studio 2026 Insider
When I try to create a new Azure Functions app in Visual Studio 2026 Insider edition, I don't get .NET 10 as an option -- see below:
I do have .NET 10 as an option for other project types such as ....
0
votes
0
answers
61
views
Function host restarting on launch and error, when running local on Mac: "Worker failed to load function"
I am getting the below error when trying to run a new Function. The Function is created from the HttpTrigger template on dotnet cli with no edits. I am running the most recent MacOS (but I hadn't ...
1
vote
1
answer
88
views
Preventing timeout when debugging (stepping through the code) in .NET Azure Function apps
I have a number of HTTP triggered Azure Function apps that do not time out when in production. However, when I want to debug them by stepping through the code (in Visual Studio 2022), slowly and ...