From 8faf2e3365fc5acc0167a05a919eef564f11491a Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Sat, 4 Aug 2018 15:10:27 +0200 Subject: Make synchronous Shade calls MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It makes difficult to find the issues (floating ip, boot, ssh connection, etc...) for a small benefit regarding the current testcase implementations. It increases the default floating ip timeout because it has been reached when running Functest multiple times in parallel. It may be the root cause when running singlevm vs XCI (in that case, neutron api and agents are hosted in a nested vm). Change-Id: Ia97e04902321644c207c59987283754318aee5e5 Signed-off-by: Cédric Ollivier --- functest/opnfv_tests/openstack/cinder/cinder_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'functest/opnfv_tests/openstack/cinder') diff --git a/functest/opnfv_tests/openstack/cinder/cinder_test.py b/functest/opnfv_tests/openstack/cinder/cinder_test.py index bc1e83097..bbed9a64f 100644 --- a/functest/opnfv_tests/openstack/cinder/cinder_test.py +++ b/functest/opnfv_tests/openstack/cinder/cinder_test.py @@ -60,7 +60,7 @@ class CinderCheck(singlevm.SingleVm2): (self.fip2, self.ssh2) = self.connect(self.vm2) self.volume = self.cloud.create_volume( name='{}-volume_{}'.format(self.case_name, self.guid), size='2', - timeout=self.volume_timeout) + timeout=self.volume_timeout, wait=True) def _write_data(self): assert self.cloud -- cgit 1.2.3-korg