increased ssh timeout due to failure

This commit is contained in:
2025-07-29 15:37:34 -07:00
parent 63f0683038
commit 5457f00c98
2 changed files with 2 additions and 2 deletions

2
run.sh
View File

@@ -243,7 +243,7 @@ function ssh_with_retry {
local cmd="$2"
local retries=4
local delay=5
local timeout=20
local timeout=30
for ((i=1; i<=retries; i++)); do
>&2 echo "SSH attempt $i/$retries to $host..."