]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph_manager: log mon quorum status so the logs show progress (or lack thereof)
authorJosh Durgin <josh.durgin@dreamhost.com>
Thu, 17 Nov 2011 18:45:19 +0000 (10:45 -0800)
committerJosh Durgin <josh.durgin@dreamhost.com>
Thu, 17 Nov 2011 18:45:19 +0000 (10:45 -0800)
teuthology/task/ceph_manager.py

index 17fee79d9402a89875cbfcf5ffb5267bc071d777..6a4529f63f96641160b8259332c8bc899d2f3ead 100644 (file)
@@ -296,6 +296,7 @@ class CephManager:
     def get_mon_quorum(self):
         out = self.raw_cluster_cmd('quorum_status')
         j = json.loads(out)
+        self.log.debug('quorum_status is %s', out)
         return j['quorum']
 
     def wait_for_mon_quorum_size(self, size, timeout=None):
@@ -307,6 +308,3 @@ class CephManager:
                     'failed to reach quorum size %d before timeout expired' % size
             time.sleep(3)
         self.log("quorum is size %d" % size)
-                
-
-