aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-10-14 18:25:10 +0100
committerdiogo464 <[email protected]>2025-10-14 18:25:10 +0100
commit19fd633b879ddc4574615b78814613dba8246777 (patch)
tree37b0dc2446d6ad673cc21088caa7231aaf94e189 /src/main.rs
parent44baa8b7ceb05b35d40f259a71c4b340b5563222 (diff)
increased ssh connection attempts to 10 and increased verbosity
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 8f2cec4..830fba0 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -778,8 +778,9 @@ async fn machine_run(
778 stdin: Option<&str>, 778 stdin: Option<&str>,
779) -> Result<Output> { 779) -> Result<Output> {
780 let ssh_common = &[ 780 let ssh_common = &[
781 "-vvv",
781 "-o", 782 "-o",
782 "ConnectionAttempts=3", 783 "ConnectionAttempts=10",
783 "-o", 784 "-o",
784 "StrictHostKeyChecking=no", 785 "StrictHostKeyChecking=no",
785 "-o", 786 "-o",