👋 I've got a simple list of schedules
👋 I've got a simple list of schedules like this in worker:
But when I deploy this, the value of
controller.cron
inside my worker's scheduled callback is always * * * * *
- this makes it impossible to differentiate between the two different schedules. Is this a known issue? If so, is there any workaround?4 Replies
I believe this means the example from the docs here doesn't work either?
https://developers.cloudflare.com/workers/examples/multiple-cron-triggers/
Because 45 is divisible by 3, controller.cron would never match the third case
Oh wait, this behaviour ONLY seems to happen when using * * * * *

Note the /2 and /4 firing separately at the same time
Okay, so a less severe bug 😌
A bug nonetheless. Where best to file this?
Good shout - am trying it now
Works
So only * * * * * is poison