Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix schedule_interval cron expression
The cron expression currently used to specify the `schedule_interval` will lead to a run at every hour (not just hour 0). See [crontab.guru's description](https://crontab.guru/#0_*_*_*_*) for details. For a daily run, the correct expression is `0 0 * * *`
- Loading branch information