From ec38bd3cb39b0f0927d5dd14364351852b3353d4 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 7 Mar 2014 14:04:49 -0600 Subject: [PATCH] Use safe_while's action arg Signed-off-by: Zack Cerza --- teuthology/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/misc.py b/teuthology/misc.py index e19f352ad0..5cf520fe83 100644 --- a/teuthology/misc.py +++ b/teuthology/misc.py @@ -821,7 +821,7 @@ def wait_until_healthy(ctx, remote): Wait until a Ceph cluster is healthy. Give up after 15min. """ testdir = get_testdir(ctx) - with safe_while(tries=(900 / 6)) as timeout: + with safe_while(tries=(900 / 6), action="wait_until_healthy") as timeout: while True: # finite timeout() r = remote.run( -- 2.39.5