aboutsummaryrefslogtreecommitdiffstats
path: root/sfc/tests/functest/sfc_chain_deletion.py
diff options
context:
space:
mode:
Diffstat (limited to 'sfc/tests/functest/sfc_chain_deletion.py')
-rw-r--r--sfc/tests/functest/sfc_chain_deletion.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/sfc/tests/functest/sfc_chain_deletion.py b/sfc/tests/functest/sfc_chain_deletion.py
index 3944cf90..5f73d0c7 100644
--- a/sfc/tests/functest/sfc_chain_deletion.py
+++ b/sfc/tests/functest/sfc_chain_deletion.py
@@ -42,9 +42,8 @@ class SfcChainDeletion(sfc_parent_function.SfcCommonTestCase):
t1 = threading.Thread(target=odl_utils.wait_for_classification_rules,
args=(self.ovs_logger, self.compute_nodes,
self.odl_ip, self.odl_port,
- self.client_instance.compute_host,
+ self.client_instance.hypervisor_hostname,
[self.neutron_port],))
-
try:
t1.start()
except Exception as e:
@@ -66,12 +65,12 @@ class SfcChainDeletion(sfc_parent_function.SfcCommonTestCase):
self.create_vnffg(self.testcase_config.test_vnffgd_red, 'blue',
'blue_http', port=80, protocol='tcp',
- symmetric=False, only_chain=True)
+ symmetric=False)
t2 = threading.Thread(target=odl_utils.wait_for_classification_rules,
args=(self.ovs_logger, self.compute_nodes,
self.odl_ip, self.odl_port,
- self.client_instance.compute_host,
+ self.client_instance.hypervisor_hostname,
[self.neutron_port],))
try:
t2.start()