From 36f4ef60867c8586d83577e3469d340611024cf9 Mon Sep 17 00:00:00 2001 From: Federico Ressi Date: Sat, 24 Aug 2019 18:31:01 +0200 Subject: [PATCH] Increment SSH connection tries intevals Change-Id: I14b68ed9eb8b02e4b7341e1a819cf58abf3015e6 --- tobiko/shell/ssh/config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tobiko/shell/ssh/config.py b/tobiko/shell/ssh/config.py index 41f4f0c44..103f75dad 100644 --- a/tobiko/shell/ssh/config.py +++ b/tobiko/shell/ssh/config.py @@ -47,14 +47,14 @@ OPTIONS = [ default=False, help="Set to True to turn on compression"), cfg.FloatOpt('timeout', - default=5., + default=10., help="SSH connect timeout in seconds"), cfg.IntOpt('connection_attempts', default=60, - help=("Incremental seconds to wait after every " - "failed SSH connection attempt")), + help=("Maximum number of connection attempts to be tried " + "before timeout")), cfg.FloatOpt('connection_interval', - default=5., + default=10., help=("Minimal seconds to wait between every " "failed SSH connection attempt")), cfg.StrOpt('proxy_jump',