Azure function App only triggering on CRON expression */30 * * * * *
Pelle
5
Reputation points
I have a Azure FunctionApp built in C# using the Visual Studio template from TimerTrigger.
When I use CRON statements that will include all seconds like (* * * * * * or */30 * * * * * or */45 * * * * 0-6) then the Function triggers correctly.
However if I change the CRON statement to exclude just one time element e.g. (0 * * * * * or */30 * * * * 4 or */45 * * * * 0-5) the function is never triggered.
Can someone tell me why the functionApp is never triggered when having a CRON statement that excludes some time elements?
Sign in to answer