From: Sage Weil Date: Sun, 16 Jun 2013 20:11:50 +0000 (-0700) Subject: ceph_manager: fix ceph tell mon.* X-Git-Tag: 1.1.0~2116 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7177d2e8fc1df8d1ab52adfec1b0e24aa9374543;p=teuthology.git ceph_manager: fix ceph tell mon.* Need -- to make cli stop parsing (or quote the options). Otherwise, the options will be parsed/applied to the cli's librados instance. --- diff --git a/teuthology/task/ceph_manager.py b/teuthology/task/ceph_manager.py index c0ff30ad5..bfd37d0d5 100644 --- a/teuthology/task/ceph_manager.py +++ b/teuthology/task/ceph_manager.py @@ -35,7 +35,7 @@ class Thrasher: if self.config is None: self.config = dict() # prevent monitor from auto-marking things out while thrasher runs - manager.raw_cluster_cmd('tell', 'mon.*', 'injectargs', + manager.raw_cluster_cmd('--', 'tell', 'mon.*', 'injectargs', '--mon-osd-down-out-interval', '0') self.thread = gevent.spawn(self.do_thrash)