skip to Main Content

StackOverFlow Exception from WebJobsBuilderExtensions while running Azure function locally

I have written Azure function which is throwing StackOverFlow Exception in the below code from class WebJobsBuilderExtensions in the namespace ` Microsoft.Azure.WebJobs services.TryAddEnumerable(ServiceDescriptor.Singleton<IHostedService, JobHostService>()); Here is my Startup class [assembly: WebJobsStartup(typeof(Startup))] namespace FuncApp { public class Startup : IWebJobsStartup {…

VIEW QUESTION

Disable/Enable Azure functions based on regions

I have a .net Azure function project which includes multiple functions such as EventGridTrigger function, BlobTrigger function etc. Few trigger functions in the project needs to be enabled only for specific regions. Is it possible to enable/disable trigger functions based…

VIEW QUESTION

Azure Function V4 Dotnet Isolated unable to connect to cosmos db

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", collectionName: "collection1", ConnectionStringSetting = "ConnectionString", LeaseCollectionName = "lease", LeaseCollectionPrefix = "UpdateLocation-", CreateLeaseCollectionIfNotExists = true)] However, with…

VIEW QUESTION
Back To Top
Search