From 1c077147acd0a6ec9f8ee80d83a3e9688fbb9444 Mon Sep 17 00:00:00 2001 From: Eugene Date: Mon, 23 Sep 2024 09:42:52 +0200 Subject: [PATCH] fixed #9955 - host key checking race --- tabby-ssh/src/session/ssh.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tabby-ssh/src/session/ssh.ts b/tabby-ssh/src/session/ssh.ts index 2ad99325..4b446239 100644 --- a/tabby-ssh/src/session/ssh.ts +++ b/tabby-ssh/src/session/ssh.ts @@ -333,6 +333,7 @@ export class SSHSession { algorithms, authHandler: (methodsLeft, partialSuccess, callback) => { this.zone.run(async () => { + await hostVerifiedPromise callback(await this.handleAuth(methodsLeft)) }) },