From 348f2e5985df75fb8bc78c203ef343d9d132543e Mon Sep 17 00:00:00 2001 From: Ethan Dickson Date: Wed, 12 Nov 2025 03:03:39 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20fix:=20increase=20SSH=20resolveP?= =?UTF-8?q?ath=20timeout=20to=2010s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/runtime/SSHRuntime.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/SSHRuntime.ts b/src/runtime/SSHRuntime.ts index 138a064cb..c35eb2e35 100644 --- a/src/runtime/SSHRuntime.ts +++ b/src/runtime/SSHRuntime.ts @@ -377,8 +377,8 @@ export class SSHRuntime implements Runtime { // Bash will expand ~ automatically when we echo the unquoted variable // This works with BusyBox (doesn't require GNU coreutils) const command = `bash -c 'p=${shescape.quote(filePath)}; echo $p'`; - // Use 5 second timeout for path resolution (should be near-instant) - return this.execSSHCommand(command, 5000); + // Use 10 second timeout for path resolution to allow for slower SSH connections + return this.execSSHCommand(command, 10000); } /**