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 bfa1752 commit 8c258bfCopy full SHA for 8c258bf
plugwise_usb/nodes/circle.py
@@ -859,7 +859,10 @@ async def _clock_synchronize_scheduler(self) -> None:
859
try:
860
while True:
861
await sleep(60)
862
- await self.clock_synchronize()
+ try:
863
+ await self.clock_synchronize()
864
+ except Exception:
865
+ _LOGGER.exception("Clock synchronisation failed for %s", self.name)
866
except CancelledError:
867
_LOGGER.debug("Clock sync scheduler cancelled for %s", self.name)
868
raise
0 commit comments