I have an Azure Function setup on a Consumption plan which contains 6 individual Timer Triggered functions.
- 3 of them fire every hour at 5 past the hour (0 5 * * * *)
- 1 of them fires every night at midnight (0 0 0 * * *)
- 1 of them fires on a Monday at 8am (0 0 8 * * Mon)
- And the final one is supposed to fire at 1am every morning (0 0 1 * * *) but isn't
They are all copies of the same application, but do different things depending upon the command line arguments. They're triggered by a Run.ps1 Powershell script which contains the appropriate command line args.
Yesterday at 09:40 I tried running the problem function manually and it ran, so I changed the schedule to (0 0 11 * * *) and it ran at 11am as expected. So I changed the schedule back to (0 0 1 * * *) but at 1am this morning it didn't run :(
I'm going to try changing the schedule so that it runs at 2am in case there's something causing an issue at 1am, but other than than what else can I try?
