From 58f35261d07970d40ff92c03da78758b9f5e4785 Mon Sep 17 00:00:00 2001 From: Mihai Parparita Date: Tue, 30 Aug 2022 10:57:23 -0700 Subject: [PATCH] cmd/tsconnect: remove debugging code Remove test prefix added to validate the error code from 27f36f77c364562bc1ca660c241291e23606e54d. Signed-off-by: Mihai Parparita --- cmd/tsconnect/src/lib/ssh.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tsconnect/src/lib/ssh.ts b/cmd/tsconnect/src/lib/ssh.ts index c1308b3d5..0735c860a 100644 --- a/cmd/tsconnect/src/lib/ssh.ts +++ b/cmd/tsconnect/src/lib/ssh.ts @@ -30,7 +30,7 @@ export function runSSHSession( let resizeObserver: ResizeObserver | undefined let handleBeforeUnload: ((e: BeforeUnloadEvent) => void) | undefined - const sshSession = ipn.ssh(def.hostname + "2", def.username, { + const sshSession = ipn.ssh(def.hostname, def.username, { writeFn(input) { term.write(input) },