Skip to content

Commit 369d354

Browse files
committed
DBC22-1404: removed unsupported priority args
1 parent c202bc0 commit 369d354

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/apps/feed/tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
from huey.contrib.djhuey import db_periodic_task, lock_task
88

99

10-
@db_periodic_task(crontab(hour="*/6"), retries=6, retry_delay=300, priority=20)
10+
@db_periodic_task(crontab(hour="*/6"), retries=6, retry_delay=300)
1111
@lock_task('populate-cameras')
1212
def populate_webcam_task():
1313
populate_all_webcam_data()
1414

1515

16-
@db_periodic_task(crontab(minute="*/1"), priority=10)
16+
@db_periodic_task(crontab(minute="*/1"))
1717
@lock_task('update-cameras')
1818
def update_camera_task():
1919
# Do not run when populate task is running

0 commit comments

Comments
 (0)