Keep hrrr queue running during propagation grid worker

Don't pause the hrrr queue while PropagationGridWorker runs,
so on-demand HRRR fetches from contact detail pages can proceed.
This commit is contained in:
Graham McIntire 2026-04-02 15:02:23 -05:00
parent bb1c46fd57
commit 1fa8681c54
No known key found for this signature in database
GPG key ID: F4ABF488E6029E59

View file

@ -18,8 +18,9 @@ defmodule Microwaveprop.Workers.PropagationGridWorker do
require Logger
# Pause these queues while the grid fetch runs so they don't compete for bandwidth
@pause_queues [:hrrr, :weather, :iemre, :terrain]
# Pause these queues while the grid fetch runs so they don't compete for bandwidth.
# Keep :hrrr running so on-demand contact detail fetches aren't blocked.
@pause_queues [:weather, :iemre, :terrain]
@max_forecast_hour 18
@impl Oban.Worker