Skip to content

Commit

Permalink
Increase timeout to 25 seconds (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
DurgNomis-drol authored Nov 15, 2022
1 parent 58de232 commit 3f8b322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/toyota/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
UPDATE_INTERVAL = timedelta(minutes=10)


async def with_timeout(task, timeout_seconds=15):
async def with_timeout(task, timeout_seconds=25):
"""Run an async task with a timeout."""
async with async_timeout.timeout(timeout_seconds):
return await task
Expand Down

0 comments on commit 3f8b322

Please sign in to comment.