Increase timeout in shaker and vmtp 46/70346/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Mon, 15 Jun 2020 09:58:10 +0000 (11:58 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Mon, 15 Jun 2020 09:59:44 +0000 (11:59 +0200)
Running them in parallel of rally full and jobs asks for a increase.
It reverts the previous change which doesn't change the right
parameters [1].

[1] https://gerrit.opnfv.org/gerrit/c/functest/+/70320

Change-Id: Ib2369d384ac839fb46031411e1985ac402da0c1e
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
functest/opnfv_tests/openstack/shaker/shaker.py
functest/opnfv_tests/openstack/vmtp/vmtp.py

index 20bb42c..917c659 100644 (file)
@@ -39,7 +39,8 @@ class Shaker(singlevm.SingleVm2):
     username = 'debian'
     port = 9000
     ssh_connect_loops = 12
-    create_server_timeout = 600
+    create_server_timeout = 300
+    check_console_loop = 12
     shaker_timeout = '3600'
     quota_instances = -1
     quota_cores = -1
index bb4ea41..76bc4e5 100644 (file)
@@ -49,7 +49,8 @@ class Vmtp(singlevm.VmReady2):
     flavor_ram = 2048
     flavor_vcpus = 1
     flavor_disk = 0
-    create_server_timeout = 600
+    create_server_timeout = 300
+    ssh_retry_timeout = 240
 
     def __init__(self, **kwargs):
         if "case_name" not in kwargs:
@@ -122,6 +123,7 @@ class Vmtp(singlevm.VmReady2):
                 self.guid)
             vmtp_conf["dns_nameservers"] = [env.get('NAMESERVER')]
             vmtp_conf["generic_retry_count"] = self.create_server_timeout // 2
+            vmtp_conf["ssh_retry_count"] = self.ssh_retry_timeout // 2
             conf.write(yaml.dump(vmtp_conf))
 
     def run_vmtp(self):