From e61a5b9565c9c56392d8505a7a8cc8046181c141 Mon Sep 17 00:00:00 2001 From: up-n-atom Date: Wed, 7 Feb 2024 13:34:42 -0500 Subject: [PATCH] Don't validate SSL cert The hubs use self-signed certificates --- xmo/xmo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmo/xmo.py b/xmo/xmo.py index cb31754..f39a7d8 100644 --- a/xmo/xmo.py +++ b/xmo/xmo.py @@ -37,7 +37,7 @@ async def cli(ctx: click.Context, host: IPv4Address, username: str, password: st ClientSession( headers={"User-Agent": "XMO_REMOTE_CLIENT/1.0.0"}, timeout=ClientTimeout(), - connector=TCPConnector(ssl=True), + connector=TCPConnector(ssl=False), ), True ) )