From: Manuel Buil Date: Fri, 11 Nov 2016 12:17:13 +0000 (+0100) Subject: Bug fix in odl-sfc X-Git-Tag: 0.2~1085 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=caa06d8d7b55a1c0608a72f809785d8f418cf541;p=functest-xtesting.git Bug fix in odl-sfc The function that measures the time it takes to update OVS had a bug Change-Id: I1e480759c0c20197dd412f3400ea50921764d991 Signed-off-by: Manuel Buil --- diff --git a/functest/opnfv_tests/features/sfc/sfc.py b/functest/opnfv_tests/features/sfc/sfc.py index 5e3e37d7..42fac561 100755 --- a/functest/opnfv_tests/features/sfc/sfc.py +++ b/functest/opnfv_tests/features/sfc/sfc.py @@ -416,7 +416,7 @@ def capture_time_log(compute_clients): if not i: first_RSP = rsps[0] i = i + 1 - if(first_RSP != rsps[0]): + if(first_RSP != rsps[0] and len(rsps) > 1): if (rsps[0] == rsps[1]): stop_time = time.time() logger.info("classification rules updated")