Skip to content

Commit

Permalink
Switched reconnection retry time back to 30s.
Browse files Browse the repository at this point in the history
  • Loading branch information
ufodone committed Jan 16, 2023
1 parent 5726424 commit 66b697d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ async def read_loop(self):
# Lost connection so reattempt connection in a bit
if not self._shutdown:
# TODO: implement exponential backoff
reconnect_time = 10
reconnect_time = 30
_LOGGER.error("Reconnection attempt in %ds", reconnect_time)
await asyncio.sleep(reconnect_time)

Expand Down

0 comments on commit 66b697d

Please sign in to comment.