From 77851c9d146a3c0446aed0d978742be24882d84d Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sat, 16 Dec 2023 19:53:59 -0500 Subject: [PATCH] bugfix --- appPublic/sshx.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appPublic/sshx.py b/appPublic/sshx.py index e8a9b46..5089f34 100644 --- a/appPublic/sshx.py +++ b/appPublic/sshx.py @@ -48,11 +48,13 @@ class SSHNode: if refconn: refconn = await refconn.connect_ssh(host, username=username, + known_hosts=None, password=password, port=port) else: refconn = await asyncssh.connect(host, username=username, + known_hosts=None, password=password, port=port) self.jumper_conns.append(refconn)