Skip to content

Commit

Permalink
fix: correct cronjob for huey (#1471)
Browse files Browse the repository at this point in the history
  • Loading branch information
ab-smith authored Feb 5, 2025
1 parent d05d330 commit 8042442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/core/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


# @db_periodic_task(crontab(minute='*/1'))# for testing
@db_periodic_task(crontab(hour="6"))
@db_periodic_task(crontab(hour="6", minute="0"))
def check_controls_with_expired_eta():
expired_controls = (
AppliedControl.objects.exclude(status="active")
Expand Down

0 comments on commit 8042442

Please sign in to comment.