add default queue for cron jobs, fix mobile sidebar scroll
All checks were successful
deploy / deploy (push) Successful in 3m35s

Cron-scheduled workers (retention, dead link checker, pruners) were
enqueued to the default queue which wasn't configured — they never ran.
Also add overflow-y scroll and sticky positioning to admin sidebar.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jamey
2026-03-02 08:07:44 +00:00
parent dd4aa9ffaa
commit 7ecab242a6
2 changed files with 9 additions and 1 deletions

View File

@@ -107,7 +107,7 @@ config :berrypod, Oban,
{"0 1 * * *", Berrypod.ActivityLog.PruneWorker}
]}
],
queues: [images: 2, sync: 1, checkout: 1, newsletter: 1]
queues: [default: 3, images: 2, sync: 1, checkout: 1, newsletter: 1]
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.