Fix connection loose
This commit is contained in:
parent
6b346f766f
commit
fe4f6e766e
@ -92,9 +92,10 @@ class HonConnection:
|
|||||||
}
|
}
|
||||||
url = f"{const.API_URL}/commands/v1/context"
|
url = f"{const.API_URL}/commands/v1/context"
|
||||||
async with self._session.get(url, params=params, headers=await self._headers) as response:
|
async with self._session.get(url, params=params, headers=await self._headers) as response:
|
||||||
if response.status >= 400 and not loop:
|
if response.status == 403 and not loop:
|
||||||
_LOGGER.error("%s - Error %s - %s", url, response.status, await response.text())
|
_LOGGER.error("%s - Error %s - %s", url, response.status, await response.text())
|
||||||
await self.setup()
|
self._request_headers.pop("cognito-token", None)
|
||||||
|
self._request_headers.pop("id-token", None)
|
||||||
return await self.load_attributes(device, loop=True)
|
return await self.load_attributes(device, loop=True)
|
||||||
return (await response.json()).get("payload", {})
|
return (await response.json()).get("payload", {})
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@ -7,7 +7,7 @@ with open("README.md", "r") as f:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="pyhOn",
|
name="pyhOn",
|
||||||
version="0.3.3",
|
version="0.3.4",
|
||||||
author="Andre Basche",
|
author="Andre Basche",
|
||||||
description="Control hOn devices with python",
|
description="Control hOn devices with python",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
|
Loading…
Reference in New Issue
Block a user