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 2451efb commit 5bad9d1Copy full SHA for 5bad9d1
plugwise_usb/nodes/circle.py
@@ -726,7 +726,7 @@ async def load(self) -> bool:
726
return False
727
728
# Get node info
729
- if await self.node_info_update() is None:
+ if self.skip_update(self._node_info, 30) and await self.node_info_update() is None:
730
_LOGGER.info(
731
"Failed to load Circle node %s because it is not responding to information request",
732
self._node_info.mac
@@ -796,7 +796,7 @@ async def initialize(self) -> bool:
796
)
797
self._initialized = False
798
799
800
_LOGGER.debug(
801
"Failed to retrieve node info for %s",
802
self.mac
0 commit comments