Skip to content

Commit

Permalink
Fix celery beat setting (#4221)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimasciput authored Sep 4, 2024
1 parent e341e09 commit 2464abd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/settings/celery_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
'args': ('odonates', 100)
},
'import-anurans-data-every-month': {
'task': 'bims..tasks.import_data_task',
'task': 'bims.tasks.import_data_task',
'schedule': crontab(day_of_month='1', hour='1', minute='0'),
'args': ('anurans', 100)
},
'resume-anurans-data-every-day': {
'task': 'bims..tasks.import_data_task',
'task': 'bims.tasks.import_data_task',
'schedule': crontab(hour='1', minute='0'),
'args': ('anurans', 100)
},
Expand Down

0 comments on commit 2464abd

Please sign in to comment.