Reputation: 9011
I have an Azure timer Function (v3):
[Microsoft.Azure.WebJobs.Singleton]
[Function(nameof(FunctionCreateSuspensionRequestsReachSmsLimit))]
public async Task Run([TimerTrigger("0 40 * * * *")] MyInfo myTimer, FunctionContext context)
so, it should be called every hour at 40 minutes 0 seconds. But really I see the following:
Why it's not called at 02:40, 03:40 etc?
Thanks
Upvotes: 1
Views: 103
Reputation:
I have created .NET 6 Azure Functions Timer Trigger on the Azure Portal with the same duration "0 40 * * * *"
you have given:
Tested today by creating the new function app around 6 AM and checked, it was not missing any schedules in between the executions that I observed for 2 consecutive days:
Upvotes: 0