fix: jump hosts failing

This commit is contained in:
LukeGus
2026-05-26 15:28:44 -05:00
parent 3011de6abb
commit 0a3517f9b0
6 changed files with 13 additions and 7 deletions
+3 -1
View File
@@ -140,7 +140,9 @@ async function createJumpHostChain(
const credential = credentials[0];
resolvedCredentials = {
password: credential.password as string | undefined,
sshKey: credential.privateKey as string | undefined,
sshKey: (credential.key || credential.privateKey) as
| string
| undefined,
keyPassword: credential.keyPassword as string | undefined,
authType: credential.authType as string | undefined,
};