From 451c5ca79de14a8462a76dc8287be1f4fd72fa1b Mon Sep 17 00:00:00 2001 From: Greg Farnum Date: Fri, 12 Jun 2015 11:05:42 -0700 Subject: [PATCH] ceph: fix up log rotation stopper Signed-off-by: Greg Farnum --- tasks/ceph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/ceph.py b/tasks/ceph.py index 28930b8e590..21dc2686a6b 100644 --- a/tasks/ceph.py +++ b/tasks/ceph.py @@ -91,7 +91,7 @@ def ceph_log(ctx, config): self.thread = gevent.spawn(self.invoke_logrotate) def end(self): - self.stopping = True + self.stop_event.set() self.thread.get() def write_rotate_conf(ctx, daemons):