From fabf36d2b655604aa9f301a84406768297113560 Mon Sep 17 00:00:00 2001 From: Sam Lang Date: Tue, 19 Mar 2013 15:42:51 -0500 Subject: [PATCH] task/ceph: Revert extra check for running status Don't use exit status info to track daemon state. We need to find a better way to do this for the restart task. Signed-off-by: Sam Lang --- teuthology/task/ceph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/ceph.py b/teuthology/task/ceph.py index e7f889d00a44e..a59f8a67b45c8 100644 --- a/teuthology/task/ceph.py +++ b/teuthology/task/ceph.py @@ -65,7 +65,7 @@ class DaemonState(object): def running(self): - return self.proc is not None and not self.proc.exited + return self.proc is not None def reset(self): self.proc = None -- 2.39.5