From e73988303fdd5024fae128bdc7fd79d8ea984aa1 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sat, 14 Feb 2026 14:02:18 -0600 Subject: [PATCH] disable tzdata in prod --- config/runtime.exs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/runtime.exs b/config/runtime.exs index 082623cb..358a0ed2 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -326,4 +326,9 @@ if config_env() == :prod do config :towerops, cloudflare_zone_id: System.get_env("CLOUDFLARE_ZONE_ID"), cloudflare_api_token: System.get_env("CLOUDFLARE_API_TOKEN") + + # Disable automatic timezone database updates in production + # Timezone data is updated through dependency updates instead + # This prevents crashes when network timeouts occur during automatic updates + config :tzdata, :autoupdate, :disabled end