From f2e65129744753e41a640ffdd6b14642fa45e91e Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Mon, 6 Apr 2026 17:01:32 -0500 Subject: [PATCH] Re-enable hourly propagation grid scoring in production --- config/runtime.exs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/runtime.exs b/config/runtime.exs index ebf04c15..0dc1d9b2 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -139,8 +139,8 @@ if config_env() == :prod do {Oban.Plugins.Cron, crontab: [ {"0 8 * * *", Microwaveprop.Workers.SolarIndexWorker}, - {"*/5 * * * *", Microwaveprop.Commercial.PollWorker} - # {"5 * * * *", Microwaveprop.Workers.PropagationGridWorker} + {"*/5 * * * *", Microwaveprop.Commercial.PollWorker}, + {"5 * * * *", Microwaveprop.Workers.PropagationGridWorker} ]} ]