Fix datetime

This commit is contained in:
Urtzi Alfaro
2025-07-17 15:02:25 +02:00
parent cb80a93c4b
commit a9e6cdae09
19 changed files with 54 additions and 54 deletions

View File

@@ -96,7 +96,7 @@ class ServiceDiscovery:
key = f"service_health:{service_name}"
value = {
"healthy": is_healthy,
"last_check": datetime.utcnow().isoformat(),
"last_check": datetime.now(datetime.timezone.utc).isoformat(),
"url": self.services[service_name]
}