Increase HTTP timeout in remote_calendar (#181599)

Co-authored-by: Home Assistant Developer <hello@home-assistant.io>
This commit is contained in:
Allen Porter
2026-09-11 18:27:06 +00:00
committed by Franck Nijhof
co-authored by Home Assistant Developer
parent 47a7f94c21
commit 8d55cafc29
@@ -18,5 +18,5 @@ async def get_calendar(
url,
auth=auth,
follow_redirects=True,
timeout=Timeout(5, read=30, write=5, pool=5),
timeout=Timeout(5, connect=10, read=30),
)