fix: HA update_event – bessere Fehlermeldung mit JSON-Response-Details

Liest message-Feld aus HA JSON-Response und loggt den Request-Body
für Debugging
This commit is contained in:
Scarriffle
2026-04-29 18:52:32 +02:00
parent 4b6839f1ff
commit 9ae247c7c5

View File

@@ -129,13 +129,17 @@ def _ha_update_event(url: str, token: str, entity_id: str, uid: str, data: dict)
e = data["end"].replace("Z", "+00:00") if data["end"].endswith("Z") else data["end"] e = data["end"].replace("Z", "+00:00") if data["end"].endswith("Z") else data["end"]
body["start_date_time"] = s body["start_date_time"] = s
body["end_date_time"] = e body["end_date_time"] = e
logger.info("HA update_event body: %s", body)
resp = http_requests.post( resp = http_requests.post(
f"{base}/api/services/calendar/update_event", f"{base}/api/services/calendar/update_event",
headers=headers, json=body, timeout=15, verify=False, headers=headers, json=body, timeout=15, verify=False,
) )
if not resp.ok: if not resp.ok:
detail = resp.text[:500] if resp.text else f"HTTP {resp.status_code}" try:
raise Exception(f"HA update_event: {resp.status_code}{detail}") detail = resp.json().get("message", resp.text[:500])
except Exception:
detail = resp.text[:500] if resp.text else f"HTTP {resp.status_code}"
raise Exception(f"HA update_event ({resp.status_code}): {detail}")
return resp return resp