Fix failed recovery in ipp (#94573)
This commit is contained in:
parent
8f437c5833
commit
e6b8e4fd48
1 changed files with 11 additions and 15 deletions
|
@ -19,21 +19,18 @@ PLATFORMS = [Platform.SENSOR]
|
||||||
|
|
||||||
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
||||||
"""Set up IPP from a config entry."""
|
"""Set up IPP from a config entry."""
|
||||||
hass.data.setdefault(DOMAIN, {})
|
coordinator = IPPDataUpdateCoordinator(
|
||||||
if not (coordinator := hass.data[DOMAIN].get(entry.entry_id)):
|
hass,
|
||||||
# Create IPP instance for this entry
|
host=entry.data[CONF_HOST],
|
||||||
coordinator = IPPDataUpdateCoordinator(
|
port=entry.data[CONF_PORT],
|
||||||
hass,
|
base_path=entry.data[CONF_BASE_PATH],
|
||||||
host=entry.data[CONF_HOST],
|
tls=entry.data[CONF_SSL],
|
||||||
port=entry.data[CONF_PORT],
|
verify_ssl=entry.data[CONF_VERIFY_SSL],
|
||||||
base_path=entry.data[CONF_BASE_PATH],
|
)
|
||||||
tls=entry.data[CONF_SSL],
|
|
||||||
verify_ssl=entry.data[CONF_VERIFY_SSL],
|
|
||||||
)
|
|
||||||
hass.data[DOMAIN][entry.entry_id] = coordinator
|
|
||||||
|
|
||||||
await coordinator.async_config_entry_first_refresh()
|
await coordinator.async_config_entry_first_refresh()
|
||||||
|
|
||||||
|
hass.data.setdefault(DOMAIN, {})[entry.entry_id] = coordinator
|
||||||
|
|
||||||
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
@ -41,7 +38,6 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
||||||
|
|
||||||
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
||||||
"""Unload a config entry."""
|
"""Unload a config entry."""
|
||||||
unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
if unload_ok := await hass.config_entries.async_unload_platforms(entry, PLATFORMS):
|
||||||
if unload_ok:
|
|
||||||
hass.data[DOMAIN].pop(entry.entry_id)
|
hass.data[DOMAIN].pop(entry.entry_id)
|
||||||
return unload_ok
|
return unload_ok
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue