From 877714605365448aed8490944c87ba073471aeed Mon Sep 17 00:00:00 2001 From: Aaron Bach Date: Wed, 27 Mar 2019 21:14:49 -0600 Subject: [PATCH] Fix too-abrubt SimpliSafe data refresh termination on error (#22466) --- homeassistant/components/simplisafe/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/simplisafe/__init__.py b/homeassistant/components/simplisafe/__init__.py index 73a4c61a6ab..e6b9aba643d 100644 --- a/homeassistant/components/simplisafe/__init__.py +++ b/homeassistant/components/simplisafe/__init__.py @@ -113,8 +113,9 @@ async def async_setup_entry(hass, config_entry): try: await system.update() except SimplipyError as err: - _LOGGER.error('There was an error while updating: %s', err) - return + _LOGGER.error( + 'There was error updating "%s": %s', system.address, err) + continue async_dispatcher_send(hass, TOPIC_UPDATE.format(system.system_id))