Skip to content

Commit 9f605a1

Browse files
author
JEREMYANDRESS
committed
FIX : periodic task every minute
1 parent 9a8f215 commit 9f605a1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/config.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ class Celery:
1212
CELERYBEAT_SCHEDULE = {
1313
'periodic_task-every-minute': {
1414
'task': 'app.task.periodic',
15-
'schedule': crontab(minute=15, hour='15')
15+
'schedule': crontab(minute='*')
16+
# 'schedule': crontab(minute=15, hour='15')
1617
}
1718
}
1819

0 commit comments

Comments
 (0)