mirror of
https://github.com/home-assistant/core.git
synced 2025-07-27 15:17:35 +00:00
Don't close aiohttp session in Overkiz config flow (#68913)
This commit is contained in:
parent
aa6f551b33
commit
6a0a77f986
@ -49,15 +49,16 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|||||||
server = SUPPORTED_SERVERS[user_input[CONF_HUB]]
|
server = SUPPORTED_SERVERS[user_input[CONF_HUB]]
|
||||||
session = async_create_clientsession(self.hass)
|
session = async_create_clientsession(self.hass)
|
||||||
|
|
||||||
async with OverkizClient(
|
client = OverkizClient(
|
||||||
username=username, password=password, server=server, session=session
|
username=username, password=password, server=server, session=session
|
||||||
) as client:
|
)
|
||||||
await client.login(register_event_listener=False)
|
|
||||||
|
|
||||||
# Set first gateway id as unique id
|
await client.login(register_event_listener=False)
|
||||||
if gateways := await client.get_gateways():
|
|
||||||
gateway_id = gateways[0].id
|
# Set first gateway id as unique id
|
||||||
await self.async_set_unique_id(gateway_id)
|
if gateways := await client.get_gateways():
|
||||||
|
gateway_id = gateways[0].id
|
||||||
|
await self.async_set_unique_id(gateway_id)
|
||||||
|
|
||||||
async def async_step_user(
|
async def async_step_user(
|
||||||
self, user_input: dict[str, Any] | None = None
|
self, user_input: dict[str, Any] | None = None
|
||||||
@ -139,8 +140,6 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|||||||
self, discovery_info: zeroconf.ZeroconfServiceInfo
|
self, discovery_info: zeroconf.ZeroconfServiceInfo
|
||||||
) -> FlowResult:
|
) -> FlowResult:
|
||||||
"""Handle ZeroConf discovery."""
|
"""Handle ZeroConf discovery."""
|
||||||
|
|
||||||
# abort if we already have exactly this bridge id/host
|
|
||||||
properties = discovery_info.properties
|
properties = discovery_info.properties
|
||||||
gateway_id = properties["gateway_pin"]
|
gateway_id = properties["gateway_pin"]
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user