Is there a mechanism to schedule the same flow at ...
# ask-metaflow
b
Is there a mechanism to schedule the same flow at different times? Essentially multiple
@schedule
decorators for the same flow?
1
v
you could use
@project
to deploy multiple `--branch`'es, each with their own
@schedule
, e.g.
--branch=daily
,
--branch=hourly
etc
also we have support for configurations coming soon, which will make this even easier - stay tuned!
b
Thanks, I'll try it out
👍 1