mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
fix: replace datetime.utcnow() with datetime.now(tz=timezone.utc) in Jitsi health check
This commit is contained in:
@@ -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),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user