Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
183 views

I have an Linux Azure function with runtimeStack as 'DOTNET-ISOLATED|9.0'. I am using consumption plane and AzureFunctionApp@2 Azure DevOps pipeline task to deploy my code from Azure DevOps. - ...
Sibeesh Venu's user avatar
  • 22.3k
0 votes
1 answer
530 views

I have migrated the Azure function from .Net 6.0 to .Net 8.0 (dotnet-isolated) and runtime version ~4. It is working as expected in local. If I deploy the azure function using Visual studio to the ...
Suresh jonna's user avatar
0 votes
2 answers
190 views

I got a C# Azure function app and it uses an ILogger to log to app insight. Until recently, the function app was implemented using .NET 6 and everything was fine. I then converted it to use .NET 8 and ...
CodeMonkey's user avatar
  • 12.6k
3 votes
2 answers
6k views

I have updated an Azure function app from the in process model to the Isolated worker model but get this warning message in the portal. The 'FUNCTIONS_WORKER_RUNTIME' setting is required. Please ...
ym185's user avatar
  • 66
1 vote
1 answer
367 views

I have an isolated worker function in .net 8 that i want to use appsettings.json for all the configuration (NOT Environment Variables). Why? Because we use appsettings.json in the other three ...
mcmcom's user avatar
  • 47
1 vote
1 answer
549 views

I have upgraded function which uses Orchestrator and Durable functions from .Net 6 to .Net 8 (isolated model) and after upgrade when I am trying to run the function, I am getting the error ...
Vivek Nirale's user avatar
0 votes
2 answers
1k views

I ran into this error when upgrading from an older version of .NET Core where functions ran "in process" to .NET 8 "isolated" instead of in-process. The details of this error were: ...
Kevat Shah's user avatar
0 votes
0 answers
632 views

This is a .net8, Azure Functions v4, dotnet-isolated project. I'm getting the following exception: System.InvalidOperationException: 'An invalid asynchronous invocation was detected. This can be ...
Chris Rockwell's user avatar
0 votes
1 answer
1k views

I am porting a .NET 6 in-process Azure Function app, to .NET 8 with dotnet-isolated. We do not store our secrets in source control/locally. So for local development, previously, we used placeholder ...
kdeez's user avatar
  • 454
1 vote
2 answers
853 views

For a .net 6 isolated worker app these are the logs of an initial run and in here we can see that there are no console provider entries for the 'Executing' and 'Executed' messages, they don't have the ...
mathro's user avatar
  • 68
0 votes
1 answer
399 views

I have a .Net8 dotnet-isolated Azure Durable Functions project. I'm using a ServiceBusTrigger to get the messages from a service bus queue: [Function(nameof(Function1))] public async Task Run( ...
Alex's user avatar
  • 910
2 votes
1 answer
2k views

The documentation for Durable Function Testing only talks about the in-proc model - https://learn.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-unit-testing I have a timer-...
Kruti Joshi's user avatar
4 votes
4 answers
8k views

We have recently upgraded our function projects in .net core api app to .net 8 Isolated model. A new timer trigger function has been added in one of the function projects which runs perfectly fine ...
rumi's user avatar
  • 3,338
0 votes
2 answers
291 views

I have got Azure Service bus topic trigger created. Not sure why it is not pulling messages off a subscription from a topic. I do have my user role setup in as reader/write in Azure using Visual ...
Richard's user avatar
  • 896
0 votes
1 answer
858 views

Updated with another example. I have an Azure Function app running on .NET 7 in isolated mode on a Linux app service plan. I'm experiencing some issues related to a orchestration function is not ...
Frode's user avatar
  • 356
3 votes
1 answer
1k views

I'm adding a new azure function (isolated process) to a running .net 7 project, but got the compile error "The attribute 'ServiceBusTrigger' is a WebJobs attribute and not supported in the .NET ...
Dan Van's user avatar
  • 85
4 votes
0 answers
832 views

I have a .NET 6.0 isolated azure function app. I want to implement custom JWT token validation. I am following this blog and created Authentication middleware for validating tokens. However there is a ...
aksvinu's user avatar
  • 191
0 votes
1 answer
2k views

My Isolated Azure funtion is accessing Azure Service Bus. The Function App is working locally. [Function("Function1")] public async Task Run([ServiceBusTrigger("email", Connection =...
beewest's user avatar
  • 4,894
0 votes
1 answer
1k views

Using the http trigger outlined here - https://learn.microsoft.com/en-us/azure/azure-functions/dotnet-isolated-process-guide [Function("HttpFunction")] public static HttpResponseData ...
CDWatson's user avatar
2 votes
1 answer
1k views

We have a very simple .NET isolated v4 Azure function app running .NET7 that has three functions all using the ServiceBusTrigger. We've found a small proportion of executions are failing with the ...
Tom Troughton's user avatar
0 votes
1 answer
353 views

I have .net 6 isolated function docker container that works locally but not in azure. The docker file copies the build output binaries to the home/site/wwwroot directory of the container based on the ...
Paul's user avatar
  • 705
2 votes
1 answer
476 views

I have a .NET isolated function with a queue trigger. When triggering that queue from the storage explorer or from another function using a QueueServiceClient, a new operationId is made up. Thus I ...
XWIKO's user avatar
  • 343
1 vote
2 answers
1k views

I am following some tutorial to connect Azure Function to Cosmosdb like this (the tutorial is for a V3 in-process azure function) [CosmosDBTrigger(databaseName: "Test", ...
Robert Dinaro's user avatar
1 vote
0 answers
145 views

Today we met a problem with our azure function after redeploy a new version. We use Azure Function v4, .NET 6 and isolated process. Function is on consumption plan. Function includes about 150 http-...
Veranika's user avatar
3 votes
0 answers
492 views

Is there a best way to abandon a message in an Azure dotnet isolated function app? I'm currently throwing an exception to force the function to complete unsuccessfully as there is no way to access a ...
AJames's user avatar
  • 79