@@ -1197,14 +1197,6 @@ def get_private_ip():
11971197)
11981198
11991199CELERY_BEAT_SCHEDULE = {
1200- "refresh_expiring_user_tokens" : {
1201- "task" : "grandchallenge.github.tasks.refresh_expiring_user_tokens" ,
1202- "schedule" : crontab (hour = 0 , minute = 15 ),
1203- },
1204- "update_publication_metadata" : {
1205- "task" : "grandchallenge.publications.tasks.update_publication_metadata" ,
1206- "schedule" : crontab (hour = 0 , minute = 30 ),
1207- },
12081200 "remove_inactive_container_images" : {
12091201 "task" : "grandchallenge.components.tasks.remove_inactive_container_images" ,
12101202 "schedule" : crontab (hour = 1 , minute = 0 ),
@@ -1221,10 +1213,6 @@ def get_private_ip():
12211213 "task" : "grandchallenge.algorithms.tasks.deactivate_old_algorithm_images" ,
12221214 "schedule" : crontab (hour = 2 , minute = 30 ),
12231215 },
1224- "aggregate_celery_daily_stats" : {
1225- "task" : "grandchallenge.background_tasks.tasks.aggregate_celery_daily_stats" ,
1226- "schedule" : crontab (hour = 2 , minute = 45 ),
1227- },
12281216 "update_associated_challenges" : {
12291217 "task" : "grandchallenge.algorithms.tasks.update_associated_challenges" ,
12301218 "schedule" : crontab (hour = 3 , minute = 0 ),
@@ -1261,30 +1249,10 @@ def get_private_ip():
12611249 "task" : "grandchallenge.challenges.tasks.update_challenge_compute_costs" ,
12621250 "schedule" : crontab (minute = 45 ),
12631251 },
1264- "delete_users_who_dont_login" : {
1265- "task" : "grandchallenge.profiles.tasks.delete_users_who_dont_login" ,
1266- "schedule" : timedelta (hours = 1 ),
1267- },
1268- "delete_old_user_uploads" : {
1269- "task" : "grandchallenge.uploads.tasks.delete_old_user_uploads" ,
1270- "schedule" : timedelta (hours = 1 ),
1271- },
1272- "clear_sessions" : {
1273- "task" : "grandchallenge.browser_sessions.tasks.clear_sessions" ,
1274- "schedule" : timedelta (hours = 1 ),
1275- },
1276- "cleanup_expired_tokens" : {
1277- "task" : "grandchallenge.github.tasks.cleanup_expired_tokens" ,
1278- "schedule" : timedelta (hours = 1 ),
1279- },
12801252 "cleanup_sent_raw_emails" : {
12811253 "task" : "grandchallenge.emails.tasks.cleanup_sent_raw_emails" ,
12821254 "schedule" : timedelta (hours = 1 ),
12831255 },
1284- "logout_privileged_users" : {
1285- "task" : "grandchallenge.browser_sessions.tasks.logout_privileged_users" ,
1286- "schedule" : timedelta (hours = 1 ),
1287- },
12881256 "update_challenge_results_cache" : {
12891257 "task" : "grandchallenge.challenges.tasks.update_challenge_results_cache" ,
12901258 "schedule" : timedelta (minutes = 5 ),
0 commit comments