add default queue for cron jobs, fix mobile sidebar scroll
All checks were successful
deploy / deploy (push) Successful in 3m35s
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:
parent
dd4aa9ffaa
commit
7ecab242a6
@ -63,6 +63,9 @@
|
|||||||
z-index: 1;
|
z-index: 1;
|
||||||
width: 16rem;
|
width: 16rem;
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
|
max-height: 100vh;
|
||||||
|
max-height: 100dvh;
|
||||||
|
overflow-y: auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
background-color: var(--t-surface-sunken);
|
background-color: var(--t-surface-sunken);
|
||||||
@ -78,6 +81,11 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.admin-sidebar {
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.admin-sidebar-overlay {
|
.admin-sidebar-overlay {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -107,7 +107,7 @@ config :berrypod, Oban,
|
|||||||
{"0 1 * * *", Berrypod.ActivityLog.PruneWorker}
|
{"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
|
# Import environment specific config. This must remain at the bottom
|
||||||
# of this file so it overrides the configuration defined above.
|
# of this file so it overrides the configuration defined above.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user