From ddb98f77738b385f74ad7ece608e6caad39c6421 Mon Sep 17 00:00:00 2001 From: Josh Durgin Date: Tue, 10 Apr 2012 16:23:58 -0700 Subject: [PATCH] ceph_manager: don't try to start greenlet twice spawn already scheduled it. Trying to start it again hits an assert. --- teuthology/task/ceph_manager.py | 1 - 1 file changed, 1 deletion(-) diff --git a/teuthology/task/ceph_manager.py b/teuthology/task/ceph_manager.py index 6d68cbebe54e1..7896367321517 100644 --- a/teuthology/task/ceph_manager.py +++ b/teuthology/task/ceph_manager.py @@ -29,7 +29,6 @@ class Thrasher: manager.raw_cluster_cmd('mon', 'tell', '*', 'injectargs', '--mon-osd-down-out-interval', '0') self.thread = gevent.spawn(self.do_thrash) - self.thread.start() def kill_osd(self, osd=None): if osd is None: -- 2.39.5