Smoke test

This commit is contained in:
Sebastien Lavoie
2026-03-30 08:07:20 -04:00
parent f7aa9ac00f
commit 7f8bc63c62
7 changed files with 385 additions and 3 deletions
-2
View File
@@ -163,7 +163,6 @@ class DknCloudNaClient:
raise DknAuthError("Missing access token")
sio = socketio.AsyncClient(
handle_sigint=False,
logger=False,
engineio_logger=False,
reconnection=True,
@@ -183,7 +182,6 @@ class DknCloudNaClient:
transports=["polling", "websocket"],
socketio_path=API_SOCKET_PATH.strip("/"),
namespaces=namespaces,
wait_timeout=REQUEST_TIMEOUT,
)
except Exception as err: # noqa: BLE001
LOGGER.debug("DKN socket connect failed: %s", err)
+1 -1
View File
@@ -7,6 +7,6 @@
"integration_type": "hub",
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/lavoiesl/homeassistant-dkncloudna/issues",
"requirements": ["python-socketio>=5.11.4,<6"],
"requirements": ["python-socketio>=4.6.1,<5"],
"version": "0.1.0"
}