From 7ca59dfae11f9157e223697b5fa77fe025b1fb09 Mon Sep 17 00:00:00 2001 From: Joao Eduardo Luis Date: Thu, 18 Jul 2013 15:58:23 +0100 Subject: [PATCH] task: mon_clock_skew_check: missing 'str'.format() key crashed the test Signed-off-by: Joao Eduardo Luis --- teuthology/task/mon_clock_skew_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/mon_clock_skew_check.py b/teuthology/task/mon_clock_skew_check.py index 634eaa2a182c8..1fb9cecac77b5 100644 --- a/teuthology/task/mon_clock_skew_check.py +++ b/teuthology/task/mon_clock_skew_check.py @@ -147,7 +147,7 @@ class ClockSkewCheck: if abs(mon_skew) > self.max_skew: assert mon_health == 'HEALTH_WARN', \ 'mon.{id} health is \'{health}\' but skew {s} > max {ms}'.format( - id=mon_id,s=abs(mon_skew),ms=self.max_skew) + id=mon_id,health=mon_health,s=abs(mon_skew),ms=self.max_skew) log_str = 'mon.{id} with skew {s} > max {ms}'.format( id=mon_id,s=abs(mon_skew),ms=self.max_skew) -- 2.39.5