From bcce4b4de9427d89a5a4f1345890327a23a26b8f Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Thu, 16 Apr 2026 08:48:33 -0500 Subject: [PATCH] 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. --- config/dev.exs | 3 ++- config/runtime.exs | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/config/dev.exs b/config/dev.exs index daa7e243..f11f72ba 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -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}, diff --git a/config/runtime.exs b/config/runtime.exs index 48624822..1ac07f35 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -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},