Skip to content

Commit c2acd29

Browse files
Remove Exception handler which was silencing inner Authentication error exception
1 parent 11f8804 commit c2acd29

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 1.3.9 (2025-08-22)
2+
- Address #563: let HA re-authenticate in case of expired token or password change
3+
14
# 1.3.8 (2025-08-22)
25
- Address #552, #568 and similar.
36

custom_components/meross_cloud/__init__.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -469,13 +469,6 @@ def _http_api_polled(*args, **kwargs):
469469
log_exception(msg, logger=_LOGGER)
470470
raise ConfigEntryNotReady()
471471

472-
except Exception as e:
473-
log_exception(
474-
"An exception occurred while setting up the meross manager. Setup will be retried...",
475-
logger=_LOGGER,
476-
)
477-
raise ConfigEntryNotReady()
478-
479472

480473
async def update_listener(hass, entry):
481474
"""Handle options update."""

custom_components/meross_cloud/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"config_flow": true,
1010
"quality_scale": "platinum",
1111
"iot_class": "cloud_push",
12-
"version": "1.3.8"
12+
"version": "1.3.9"
1313
}

0 commit comments

Comments
 (0)