From 4b082d08b46941da06630926a117054881a8aa1b Mon Sep 17 00:00:00 2001 From: Manuel Buil Date: Tue, 14 Mar 2017 11:13:22 +0000 Subject: Bug fix: classif. check not working for one chain In the test case with only one chain the wait_classification function was not working Change-Id: I4cff1e61130b6fc68d736108a0da048909dad750 Signed-off-by: Manuel Buil --- sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py') diff --git a/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py b/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py index fa549b16..d96b9d83 100644 --- a/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py +++ b/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py @@ -180,9 +180,10 @@ def main(): logger.info(test_utils.run_cmd('tacker sfc-list')[1]) logger.info(test_utils.run_cmd('tacker sfc-classifier-list')[1]) + num_chains = 2 # Start measuring the time it takes to implement the classification rules t1 = threading.Thread(target=test_utils.wait_for_classification_rules, - args=(ovs_logger, compute_clients,)) + args=(ovs_logger, compute_clients, num_chains,)) try: t1.start() except Exception, e: -- cgit 1.2.3-korg