Skip to content

Commit

Permalink
Actually fix celery task names and specifications
Browse files Browse the repository at this point in the history
  • Loading branch information
Comeani authored Sep 16, 2024
1 parent 94fb52c commit 9994dbc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions keystone_api/apps/scheduler/celery.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@
'description': 'This task clears the JWT token blacklist.'
},
'apps.allocations.tasks.limits.update_limits': {
'task': 'apps.allocations.tasks.update_limits',
'task': 'apps.allocations.tasks.limits.update_limits',
'schedule': crontab(minute='0'),
'description': 'This task updates all Slurm clusters with the latest user allocation limits.'
},
'apps.allocations.tasks.notifications.notify_upcoming_expirations': {
'task': 'apps.allocations.tasks.notify_upcoming_expirations',
'task': 'apps.allocations.tasks.notifications.notify_upcoming_expirations',
'schedule': crontab(hour='0', minute='0'),
'description': 'This task issues notifications informing users of upcoming expirations.'
},
'apps.allocations.tasks.notify_past_expirations': {
'apps.allocations.tasks.notifications.notify_past_expirations': {
'task': 'apps.allocations.tasks.notifications.notify_past_expirations',
'schedule': crontab(hour='0', minute='0'),
'description': 'This task issues notifications informing users when their allocations have expired.'
Expand Down

0 comments on commit 9994dbc

Please sign in to comment.