You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
small enhancements to possible 401 @ wallbox search requests (even if session is authorized) - when this happens during initial-startup this will be some sort of fatal - so logging this as ERROR now
_LOGGER.debug(f"app_update_all_wallboxes(): No valid wallbox data received or data is not a list '{data}'")
5359
+
ifdataisFalse:
5360
+
_LOGGER.error(f"app_update_all_wallboxes(): Senec backend probably respond wih HTTP-status 401 to the initial wallbox search - this will cause fatal issues during restart - please check yor provided credentials and restart the integration!")
5361
+
else:
5362
+
_LOGGER.warning(f"app_update_all_wallboxes(): No valid wallbox data received or data is not a list '{data}'")
5357
5363
else:
5358
-
_LOGGER.warning(f"app_update_all_wallboxes(): No valid wallbox data received or data is not a list '{data}'")
5364
+
_LOGGER.debug(f"app_update_all_wallboxes(): No valid wallbox data received or data is not a list '{data}'")
5365
+
5366
+
# we do not update any data in our 'self._app_raw_wallbox[idx]' object (so we keep the old wallbox data)
0 commit comments