Hi everyone, I've read previously that it is not possible to have multiple schedules for the same flow. Is the recommended way of doing this using the Config object with multiple config files? If so, the cron would still be unique to the project, branch and flow name. I understand that it is not possible to have multiple cron for the same flow under the same branch under the same project. Are there plans to support this behaviour in the future?
h
hundreds-rainbow-67050
05/20/2025, 12:49 PM
Can you describe your usecase some more? What schedules are you trying to attach?
Config is deploy time so you will still need to have multiple deployed flows to use different schedules
a
adamant-psychiatrist-48924
05/20/2025, 12:54 PM
Hi @hundreds-rainbow-67050, thanks for replying. The use case is that we want to have multiple schedules tied to the same flow. For eg, every Tuesday 3:00p.m, 5:00pm and 8:00pm. Ideally this can be solved by allowing stacking of schedules that are cron-based, which I don't think is possible
h
hundreds-rainbow-67050
05/20/2025, 1:07 PM
Right, you can't have multiple schedules (OR notation) for the same flow right now. However, that specific example can be expressed in a single cron schedule -- something like
0 15,17,20 * * 2
a
adamant-psychiatrist-48924
05/20/2025, 2:24 PM
Alright thanks for the response, are there plans to enable this behaviour in the future? Or the Config is always preferred method for this situation