From 0433a61c89edd163b5451bb4e1fb78e8ca3a891a Mon Sep 17 00:00:00 2001 From: “Manuel Buil” Date: Mon, 13 Mar 2017 18:56:31 +0100 Subject: Bug fix: client and server not using shuffler MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Client and server were not being created based on the topology shuffler and thus the topology was not followed Change-Id: I1d7228d2d75e4ecf57ff8eb1c4226b963b2b9dd4 Signed-off-by: “Manuel Buil” --- .../sfc_one_chain_two_service_functions_different_computes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sfc/tests/functest/sfc_one_chain_two_service_functions_different_computes.py b/sfc/tests/functest/sfc_one_chain_two_service_functions_different_computes.py index 651962e3..88c3d5fb 100644 --- a/sfc/tests/functest/sfc_one_chain_two_service_functions_different_computes.py +++ b/sfc/tests/functest/sfc_one_chain_two_service_functions_different_computes.py @@ -110,11 +110,11 @@ def main(): test_utils.create_instance( nova_client, CLIENT, COMMON_CONFIG.flavor, - image_id, network_id, sg_id) + image_id, network_id, sg_id, av_zone=testTopology['client']) srv_instance = test_utils.create_instance( nova_client, SERVER, COMMON_CONFIG.flavor, image_id, - network_id, sg_id) + network_id, sg_id, av_zone=testTopology['server']) srv_prv_ip = srv_instance.networks.get(TESTCASE_CONFIG.net_name)[0] -- cgit 1.2.3-korg