Azure function App only triggering on CRON expression */30 * * * * *

Pelle 5 Reputation points
2023-12-08T05:30:58.5133333+00:00

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?

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,417 questions
{count} vote

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.