Increment SSH connection tries intevals

Change-Id: I14b68ed9eb8b02e4b7341e1a819cf58abf3015e6
This commit is contained in:
Federico Ressi 2019-08-24 18:31:01 +02:00
parent be4cec3203
commit 36f4ef6086
1 changed files with 4 additions and 4 deletions

View File

@ -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',