Add :exports Oban queue for LiveTable CSV/PDF workers

LiveTable.Workers.CsvExportWorker and PdfExportWorker enqueue on :exports.
Prod had 2 pending jobs stuck in `available` with no queue to execute them.
This commit is contained in:
Graham McIntire 2026-04-16 08:48:33 -05:00
parent 437eeb1c47
commit bcce4b4de9
No known key found for this signature in database
GPG key ID: F4ABF488E6029E59
2 changed files with 4 additions and 2 deletions

View file

@ -83,7 +83,8 @@ config :microwaveprop, Oban,
commercial: 2,
iemre: 10,
narr: 6,
backfill_enqueue: 1
backfill_enqueue: 1,
exports: 1
],
plugins: [
{Oban.Plugins.Pruner, max_age: 3600 * 24},

View file

@ -180,7 +180,8 @@ if config_env() == :prod do
admin: 1,
nexrad: 2,
ionosphere: 1,
space_weather: 1
space_weather: 1,
exports: 1
],
plugins: [
{Oban.Plugins.Pruner, max_age: 3600 * 24},