We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf23a63 commit 18522a8Copy full SHA for 18522a8
custom_components/jablotron80/jablotron.py
@@ -889,7 +889,9 @@ def connect(self) -> None:
889
if "timed out" in f'{ex}':
890
LOGGER.info('Timeout, retrying')
891
elif "Connection refused" in f'{ex}':
892
- LOGGER.info('Connection refused by remote host, retrying')
+ LOGGER.info('Connection refused by remote serial host, retrying')
893
+ elif "unreachable" in f'{ex}':
894
+ LOGGER.info('Remote serial host is currently unreachable, retrying')
895
else:
896
raise
897
0 commit comments