From dd0089906f15083adbbde2fe0679f6082014d4f1 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Tue, 2 Sep 2025 18:25:55 -0600 Subject: [PATCH] fix: replace datetime.utcnow() with datetime.now(tz=timezone.utc) in Jitsi health check --- server/reflector/video_platforms/jitsi/router.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/reflector/video_platforms/jitsi/router.py b/server/reflector/video_platforms/jitsi/router.py index f7fb2205..1fe15a5e 100644 --- a/server/reflector/video_platforms/jitsi/router.py +++ b/server/reflector/video_platforms/jitsi/router.py @@ -160,6 +160,6 @@ async def jitsi_health_check(): return { "status": "ok", "service": "jitsi-webhooks", - "timestamp": datetime.utcnow().isoformat(), + "timestamp": datetime.now(tz=timezone.utc).isoformat(), "webhook_secret_configured": bool(settings.JITSI_WEBHOOK_SECRET), }