From a9de24726acb40c34f235ee9337e62b572f1e666 Mon Sep 17 00:00:00 2001 From: Robin Dittmar Date: Mon, 20 Jul 2026 22:23:43 +0200 Subject: [PATCH] fix: always run service with UTC timezone --- cmd/api-server/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/api-server/main.go b/cmd/api-server/main.go index 0dbbb78..0c0df32 100644 --- a/cmd/api-server/main.go +++ b/cmd/api-server/main.go @@ -30,6 +30,8 @@ func main() { } func run(serviceName string, serviceVersion string) error { + time.Local, _ = time.LoadLocation("UTC") + _ = godotenv.Load(".env") setupLogging()