Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update celery task names to match python path after refactor #418

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions keystone_api/apps/scheduler/celery.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@
'schedule': crontab(hour='0', minute='0'),
'description': 'This task clears the JWT token blacklist.'
},
'apps.allocations.tasks.update_limits': {
'apps.allocations.tasks.limits.update_limits': {
'task': 'apps.allocations.tasks.update_limits',
'schedule': crontab(minute='0'),
'description': 'This task updates all Slurm clusters with the latest user allocation limits.'
},
'apps.allocations.tasks.notify_upcoming_expirations': {
'apps.allocations.tasks.notifications.notify_upcoming_expirations': {
'task': 'apps.allocations.tasks.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': {
'task': 'apps.allocations.tasks.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
Loading