Reputation: 4762
I develop an Azure Function App with some timer triggered functions. For my local debug I set in the local.settings.json:
"AzureWebJobsStorage": "UseDevelopmentStorage=true"
Everything works fine locally using the Azure Storage Emulator.
But if I add a orchestration triggered function e.g.:
[FunctionName("Function2")]
public void Function2([OrchestrationTrigger] IDurableOrchestrationContext context, ILogger log)
{
...
}
the code compiles, start but none of the timer triggered function is called.
If I change the "AzureWebJobsStorage" to a real azure storage connection, everything works fine again.
Is there a way to use and test both timer triggered and orchestrated function pure local with the Azure Storage Emulator?
Upvotes: 0
Views: 150