Skip to content

Commit

Permalink
Fix oopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
Syriiin committed Jul 30, 2024
1 parent 29e177a commit d2b3c0d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions osuchan/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,45 +220,45 @@ class EnvSettings(BaseSettings):
"task": "profiles.tasks.update_loved_beatmaps",
"schedule": crontab(minute="0", hour="0", day_of_month="1"),
},
"update-coe-top-10-members-osu-every-10-minutes": {
"update-coe-top-50-members-osu-every-10-minutes": {
"task": "profiles.tasks.dispatch_update_community_leaderboard_members",
"schedule": 60 * 10,
"args": (804, 50),
},
"update-coe-top-10-members-taiko-every-10-minutes": {
"update-coe-top-50-members-taiko-every-10-minutes": {
"task": "profiles.tasks.dispatch_update_community_leaderboard_members",
"schedule": 60 * 10,
"args": (805, 50),
},
"update-coe-top-10-members-catch-every-10-minutes": {
"update-coe-top-50-members-catch-every-10-minutes": {
"task": "profiles.tasks.dispatch_update_community_leaderboard_members",
"schedule": 60 * 10,
"args": (806, 50),
},
"update-coe-top-10-members-mania-every-10-minutes": {
"update-coe-top-50-members-mania-every-10-minutes": {
"task": "profiles.tasks.dispatch_update_community_leaderboard_members",
"schedule": 60 * 10,
"args": (807, 50),
},
"update-coe-top-100-members-osu-every-hour": {
"task": "profiles.tasks.dispatch_update_community_leaderboard_members",
"schedule": 60 * 60,
"args": (804, 50),
"args": (804, 100),
},
"update-coe-top-100-members-taiko-every-hour": {
"task": "profiles.tasks.dispatch_update_community_leaderboard_members",
"schedule": 60 * 60,
"args": (805, 50),
"args": (805, 100),
},
"update-coe-top-100-members-catch-every-hour": {
"task": "profiles.tasks.dispatch_update_community_leaderboard_members",
"schedule": 60 * 60,
"args": (806, 50),
"args": (806, 100),
},
"update-coe-top-100-members-mania-every-hour": {
"task": "profiles.tasks.dispatch_update_community_leaderboard_members",
"schedule": 60 * 60,
"args": (807, 50),
"args": (807, 100),
},
"update-coe-all-members-osu-every-day": {
"task": "profiles.tasks.dispatch_update_community_leaderboard_members",
Expand Down

0 comments on commit d2b3c0d

Please sign in to comment.