As per Function configuration, it has to fire every 5 minutes but the function is not triggered at all.It does trigger if I change it to seconds configuration 0/45 * * * * *.
@FunctionName("TestFunction")
public void TestFunction(
@TimerTrigger(name = "req", schedule = "0 */5 * * * *") String timerInfo,
ExecutionContext context
) {
try {
// Do something.
} catch (Exception e) {
}
}
There is no exceptions thrown or log info.The issue occurs in both local eclipse debug and in cloud deployment.
Any help is appreciated, Thanks.