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-08 08:12:56 +02:00
committed by GitHub
co-authored by Home Assistant Developer
parent 07e871579d
commit 87bc4c5b97
@@ -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),
)