From 1a884e81e8ea3779f63122b3af844011d8a1d421 Mon Sep 17 00:00:00 2001 From: rexlee8776 Date: Fri, 19 Aug 2016 17:04:31 +0000 Subject: [PATCH] bugfix: serviceha do not provide result to influxdb JIRA: YARDSTICK-320 Change-Id: I94cdc2cc9f4f356484d49916d2c67bac61e38967 Signed-off-by: rexlee8776 --- yardstick/benchmark/scenarios/availability/serviceha.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/yardstick/benchmark/scenarios/availability/serviceha.py b/yardstick/benchmark/scenarios/availability/serviceha.py index aee94ee09..10f2c4f45 100755 --- a/yardstick/benchmark/scenarios/availability/serviceha.py +++ b/yardstick/benchmark/scenarios/availability/serviceha.py @@ -66,6 +66,10 @@ class ServiceHA(base.Scenario): LOG.info("monitor stop!") sla_pass = self.monitorMgr.verify_SLA() + if sla_pass: + result['sla_pass'] = 1 + else: + result['sla_pass'] = 0 assert sla_pass is True, "the test cases is not pass the SLA" return -- 2.16.6