Increase default connection timeout for CentOS VMs from 400 to 800 seconds

Change-Id: I457e2ef60b8f4ded35d92180817cbdd0617f1108
This commit is contained in:
Federico Ressi 2020-11-09 14:10:00 +01:00
parent ad0881a25d
commit ff29ed3d64
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ class CentosImageFixture(glance.URLGlanceImageFixture):
container_format = CONF.tobiko.centos.container_format or "bare"
username = CONF.tobiko.centos.username or 'centos'
password = CONF.tobiko.centos.password
connection_timeout = CONF.tobiko.centos.connection_timeout or 400.
connection_timeout = CONF.tobiko.centos.connection_timeout or 800.
class CentosFlavorStackFixture(_nova.FlavorStackFixture):