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 af8560c commit bf23a63Copy full SHA for bf23a63
custom_components/jablotron80/jablotron.py
@@ -888,6 +888,8 @@ def connect(self) -> None:
888
except serial.SerialException as ex:
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')
893
else:
894
raise
895
0 commit comments