Thanks. Just to be sure I understand it correctly here’s the sequence I get out of this:
- app starts with a single crontab entry with hourly worker
args: %{custom: "arg"} - cron plugin adds a job instance with
args: %{custom: "arg"}scheduled to run in an hour - app is shut down before the job ran
- app starts with a single crontab entry but now with hourly worker
args: %{custom: "some other value"} - cron plugin adds a job instance with
args: %{custom: "some other value"}scheduled to run one hour from now - one hour after step 2 the first job (with
args: %{custom: "arg"}) is executed, no new instance is added anymore - one hour after step 5 the second job (with
args: %{custom: "some other value"}) is executed - cron plugin adds a job instance with
args: %{custom: "some other value"}scheduled to run one hour from now






















