fix: cron to utc

Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
This commit is contained in:
Ameya Shenoy 2021-02-15 00:25:03 +05:30
parent 19dcbff6fd
commit 52c4b78bdc
Signed by: codingcoffee
GPG key ID: F7D58AAC5DACF8D3

View file

@ -22,7 +22,7 @@ class AppConfig(AppConfig):
job.delete()
# Schedule jobs here as required
scheduler.cron(
"0 6 * * 1-5",
"30 12 * * 1-5", # UTC
func=populate_bhav_copy_data,
repeat=None,
)