This commit is contained in:
yumoqing 2025-04-14 15:20:15 +08:00
parent f64811f1ce
commit bced0d4f28

View File

@ -75,7 +75,7 @@ class XtermProcessor(PythonScriptProcessor):
self.sshnode = SSHNode(host, username=username, self.sshnode = SSHNode(host, username=username,
password=password, password=password,
port=port, port=port,
client_keys=[] client_key is None or [client_key], client_keys=[] if client_key is None or [client_key],
passphrase=passphrase, passphrase=passphrase,
jumpers=jumpers) jumpers=jumpers)
await self.sshnode.connect() await self.sshnode.connect()