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:
parent
bb1c46fd57
commit
1fa8681c54
1 changed files with 3 additions and 2 deletions
|
|
@ -18,8 +18,9 @@ defmodule Microwaveprop.Workers.PropagationGridWorker do
|
||||||
|
|
||||||
require Logger
|
require Logger
|
||||||
|
|
||||||
# Pause these queues while the grid fetch runs so they don't compete for bandwidth
|
# Pause these queues while the grid fetch runs so they don't compete for bandwidth.
|
||||||
@pause_queues [:hrrr, :weather, :iemre, :terrain]
|
# Keep :hrrr running so on-demand contact detail fetches aren't blocked.
|
||||||
|
@pause_queues [:weather, :iemre, :terrain]
|
||||||
@max_forecast_hour 18
|
@max_forecast_hour 18
|
||||||
|
|
||||||
@impl Oban.Worker
|
@impl Oban.Worker
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue