All Questions
Tagged with azure-function-app or azure-functions
18,068 questions
0
votes
0
answers
50
views
Azure function not launched by Aspire when running test in normal test mode
I have a weird problem that I need som input on when running a test in normal test mode (not debug).
Tools
Visual Studio code, Version: 1.107.0
Mac OS, M4
Background
An azure function exists, we can ...
2
votes
4
answers
203
views
Logging long running API or other call
I'd like to be able to make a call (e.g., to an API) from within an Azure function, and make a log entry if it is taking longer than n milliseconds, but not interrupt or end the call. Note this is not ...
0
votes
0
answers
80
views
Azure Container App scale-down causes Azure Function (queue trigger, hosted as Container App) to fail with No process is associated with this object [closed]
I’m running an Azure Functions queue-triggered app hosted as a container inside Azure Container Apps.
The function is built with .NET 10 and scaled using KEDA scale rules defined in Bicep.
I’m ...
0
votes
0
answers
76
views
How can I automate loading .bak/.bacpac files from SFTP into Azure SQL and run post-load mapping scripts at low cost?
I’m trying to design a low-cost automated process for refreshing an Azure SQL database from backups that are delivered to an SFTP server.
I receive either .bak or .bacpac files via SFTP. I want to ...
0
votes
0
answers
43
views
Azure FunctionsApp stopped running all of sudden
The Functions in FunctionApp was running smoothly it stopped running on 20/11/2025.
I tried restarting the App but no use.
created another function app with same code and it ran successfully on the ...
0
votes
1
answer
62
views
How to configure Capacitor (not Ionic) for Angular to VS Code Azure Function App integration
Straight forward questions asking for steps to configure Mac iOs.
I need local iPhone / Xcode simulator running Angular in Capacitor (no Ionic) to be able to make http calls to Azure Function App ...
0
votes
1
answer
74
views
Azure Function App puts ApplicationProperties of ServiceBusMessage into the body instead of its own ApplicationProperties property
I have an Azure Function App version 4 using .NET 8. It is an isolated worker function app if that helps.
It is referencing these packages:
<PackageReference Include="Azure.Messaging....
1
vote
0
answers
71
views
Unable to Stop or Reset Local Durable Azure Function Execution (Orchestrator Keeps Resuming Previous State)
I have built a Durable Azure Function that performs an ETL process—fetching data from an API, converting it into a relational structure, and transforming it. The solution uses a Durable Functions ...
1
vote
3
answers
188
views
Error while deploying python code to linux based azure function
I am trying to deploy python code to azure function (linux based, python 3.12). The app works if I exclude pandas (and other package dependency). However, I am getting the following error on azure if ...
0
votes
0
answers
59
views
QuestPDF doesn't render text in Azure Functions
I use QuestPDF package to generate a PDF from a SVG template in my .NET 9.0, isolated-worker Azure Functions on Linux, like this:
var pdfBytes = Document.Create(container =>
{
container.Page(...
1
vote
0
answers
93
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
30
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
29
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 ...
-1
votes
1
answer
64
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
38
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&...