From b3682a5c81de837bba8f3c9f20877054831c2561 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 30 May 2022 19:51:35 -1000 Subject: [PATCH] Revert bond reload on setup_retry discovery (#72744) --- homeassistant/components/bond/config_flow.py | 1 - 1 file changed, 1 deletion(-) diff --git a/homeassistant/components/bond/config_flow.py b/homeassistant/components/bond/config_flow.py index 9670782d2a6..09386c3587d 100644 --- a/homeassistant/components/bond/config_flow.py +++ b/homeassistant/components/bond/config_flow.py @@ -114,7 +114,6 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): changed = new_data != dict(entry.data) if changed: hass.config_entries.async_update_entry(entry, data=new_data) - if changed or entry.state is ConfigEntryState.SETUP_RETRY: entry_id = entry.entry_id hass.async_create_task(hass.config_entries.async_reload(entry_id)) raise AbortFlow("already_configured")