diff options
author | 2018-08-03 06:19:22 +0200 | |
---|---|---|
committer | 2018-08-03 06:22:55 +0200 | |
commit | be8654700bffbfee6ed57a0b5321df1876993877 (patch) | |
tree | cbf7000dcf9fcd4d3cef96490e66a96e9aafa3ac | |
parent | 4a4db3cdb7749db4d61862c466f178e6bad33232 (diff) |
Increase Cloudify create_server_timeout
The timeout has been reached when running multiple vnfs in parallel.
Only few additional seconds seemed required here.
Change-Id: I0d6e38e827c581edb617bb0cc13249645468a2aa
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 9c19bb9bb41e36d4ca70563649ced92ce7ab9b82)
-rw-r--r-- | functest/core/cloudify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/core/cloudify.py b/functest/core/cloudify.py index 158929b2c..a760b9fa2 100644 --- a/functest/core/cloudify.py +++ b/functest/core/cloudify.py @@ -31,7 +31,7 @@ class Cloudify(singlevm.SingleVm2): flavor_disk = 40 username = 'centos' ssh_connect_loops = 12 - create_server_timeout = 300 + create_server_timeout = 600 ports = [80, 443, 5671, 53333] def __init__(self, **kwargs): |