From 468f1f1c88b993de227c9c6df7d53f1d5b2fef87 Mon Sep 17 00:00:00 2001 From: dongwenjuan Date: Tue, 9 Apr 2019 10:22:52 +0800 Subject: Handle the exception for running the profiler Congress as inspector, currently we can't get the vmdown time and hostdown time unless we get the log of congress and extract the times. Change-Id: Ie8b9dff6048040a1f834033c4873c168225e9d8c Signed-off-by: dongwenjuan --- doctor_tests/scenario/fault_management.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'doctor_tests/scenario/fault_management.py') diff --git a/doctor_tests/scenario/fault_management.py b/doctor_tests/scenario/fault_management.py index a110b88a..5216aa80 100644 --- a/doctor_tests/scenario/fault_management.py +++ b/doctor_tests/scenario/fault_management.py @@ -209,6 +209,10 @@ class FaultManagement(object): detected = self.monitor.detected_time notified = self.consumer.notified_time + if None in [vmdown, hostdown, detected, notified]: + self.log.info('one of the time for profiler is None, return') + return + # TODO(yujunz) check the actual delay to verify time sync status # expected ~1s delay from $trigger to $linkdown relative_start = linkdown -- cgit 1.2.3-korg