From 9d8597cf6064f9e0e9b35be01e89bb717559c516 Mon Sep 17 00:00:00 2001 From: Federico Ressi Date: Thu, 30 Apr 2020 14:33:32 +0200 Subject: [PATCH] Increase maximum number of SSH connection attemts to 100 to fix timeout issues Change-Id: I47fdc17e826c245034001ab383d6b6ca62f517a5 --- tobiko/shell/ssh/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tobiko/shell/ssh/config.py b/tobiko/shell/ssh/config.py index cb887a655..9ad018189 100644 --- a/tobiko/shell/ssh/config.py +++ b/tobiko/shell/ssh/config.py @@ -50,7 +50,7 @@ OPTIONS = [ default=10., help="SSH connect timeout in seconds"), cfg.IntOpt('connection_attempts', - default=60, + default=100, help=("Maximum number of connection attempts to be tried " "before timeout")), cfg.FloatOpt('connection_interval',