mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-07-20 23:56:30 +00:00
Guard against multiple client creations (#2809)
This commit is contained in:
parent
4a53c62af8
commit
dd10d3e037
@ -86,9 +86,14 @@ class HomeAssistantWebSocket(CoreSysAttributes):
|
||||
"""Initialize Home Assistant object."""
|
||||
self.coresys: CoreSys = coresys
|
||||
self._client: Optional[WSClient] = None
|
||||
self._lock: asyncio.Lock = asyncio.Lock()
|
||||
|
||||
async def _get_ws_client(self) -> WSClient:
|
||||
"""Return a websocket client."""
|
||||
async with self._lock:
|
||||
if self._client is not None:
|
||||
return self._client
|
||||
|
||||
await self.sys_homeassistant.api.ensure_access_token()
|
||||
client = await WSClient.connect_with_auth(
|
||||
self.sys_websession_ssl,
|
||||
|
Loading…
x
Reference in New Issue
Block a user