Increase weather enqueue frequency to every 30 minutes

This commit is contained in:
Graham McIntire 2026-03-30 13:28:21 -05:00
parent da3503223f
commit 7f97c72f98
No known key found for this signature in database
GPG key ID: F4ABF488E6029E59

View file

@ -51,7 +51,7 @@ config :microwaveprop, Oban,
{Oban.Plugins.Cron,
crontab: [
{"0 8 * * *", Microwaveprop.Workers.SolarIndexWorker},
{"0 */4 * * *", Microwaveprop.Workers.QsoWeatherEnqueueWorker},
{"*/30 * * * *", Microwaveprop.Workers.QsoWeatherEnqueueWorker},
{"*/5 * * * *", Microwaveprop.Commercial.PollWorker}
]}
]