Skip to content

Commit c30bffc

Browse files
committed
Functional stakick progress, version bump a0
1 parent ee8de00 commit c30bffc

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

airos/airos8.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,9 @@ async def stakick(self, mac_address: str = None) -> bool:
251251
) as response:
252252
if response.status == 200:
253253
return True
254+
response_text = await response.text()
255+
log = f"Unable to restart connection response status {response.status} with {response_text}"
256+
logger.error(log)
254257
return False
255258
except (
256259
aiohttp.ClientError,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "airos"
7-
version = "0.0.9"
7+
version = "0.0.10a0"
88
license = "MIT"
99
description = "Ubiquity airOS module(s) for Python 3."
1010
readme = "README.md"

0 commit comments

Comments
 (0)