From 1458e2750942b4656fbf12d25610200a4db18657 Mon Sep 17 00:00:00 2001 From: Alex Schultz Date: Tue, 25 Feb 2020 14:47:14 -0700 Subject: [PATCH] Increase ssh port timeout It's been reported that we still failing too quickly for some environments with a mix of vms and physical hardware. Let's increase the default ssh port timeout to 600 seconds to work around this. See also: https://bugzilla.redhat.com/show_bug.cgi?id=1805429 Related-Bug: #1805725 Change-Id: I95ddc0b7cb6342c367772b0cf296ee372dbb92dd --- tripleoclient/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tripleoclient/constants.py b/tripleoclient/constants.py index c8512d735..aeabb36a5 100644 --- a/tripleoclient/constants.py +++ b/tripleoclient/constants.py @@ -73,7 +73,7 @@ FFWD_UPGRADE_PREPARE_SCRIPT = ("#!/bin/bash \n" ENABLE_SSH_ADMIN_TIMEOUT = 600 ENABLE_SSH_ADMIN_STATUS_INTERVAL = 5 -ENABLE_SSH_ADMIN_SSH_PORT_TIMEOUT = 300 +ENABLE_SSH_ADMIN_SSH_PORT_TIMEOUT = 600 ADDITIONAL_ARCHITECTURES = ['ppc64le']