From: Zack Cerza Date: Fri, 7 Mar 2014 19:03:58 +0000 (-0600) Subject: Look for ready() in the right place X-Git-Tag: 1.1.0~1620 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=081a5c4bf9b2705aa5af43b6c73a5636b4bf3db6;p=teuthology.git Look for ready() in the right place Signed-off-by: Zack Cerza --- diff --git a/teuthology/orchestra/run.py b/teuthology/orchestra/run.py index d00bc6364..c8db4ee1d 100644 --- a/teuthology/orchestra/run.py +++ b/teuthology/orchestra/run.py @@ -348,7 +348,7 @@ def wait(processes, timeout=None): while len(not_ready) > 0: check_time() for proc in not_ready: - if proc.ready(): + if proc.exitstatus.ready(): not_ready.remove(proc) for proc in processes: