Attempt to fix good job cache queuing

This commit is contained in:
Max Wofford
2025-04-25 16:50:16 -04:00
parent 44261ac723
commit 7e46519d05

View File

@@ -42,22 +42,22 @@ Rails.application.configure do
cache_active_user_graph_data_job: {
cron: "*/10 * * * *",
class: "Cache::ActiveUsersGraphDataJob",
args: [ dry_run: false ]
kwargs: { dry_run: false }
},
cache_currently_hacking: {
cron: "* * * * *",
class: "Cache::CurrentlyHacking",
args: [ dry_run: false ]
kwargs: { dry_run: false }
},
cache_home_stats: {
cron: "*/10 * * * *",
class: "Cache::HomeStatsJob",
args: [ dry_run: false ]
kwargs: { dry_run: false }
},
cache_active_projects: {
cron: "* * * * *",
class: "Cache::ActiveProjectsJob",
args: [ dry_run: false ]
kwargs: { dry_run: false }
}
}
end