From: Vikhyat Umrao Date: Fri, 20 May 2016 17:39:46 +0000 (+0530) Subject: mon : Display full flag in ceph status if X-Git-Tag: v11.0.0~384^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6b1c894b2b083bf6cead21e9f96d304b2eb7887d;p=ceph.git mon : Display full flag in ceph status if full flag is set Fixes: http://tracker.ceph.com/issues/15809 Signed-off-by: Vikhyat Umrao --- diff --git a/src/mon/OSDMonitor.cc b/src/mon/OSDMonitor.cc index c9f46f054e1..7bdd2732c56 100644 --- a/src/mon/OSDMonitor.cc +++ b/src/mon/OSDMonitor.cc @@ -2853,7 +2853,8 @@ void OSDMonitor::get_health(list >& summary, } // warn about flags - if (osdmap.test_flag(CEPH_OSDMAP_PAUSERD | + if (osdmap.test_flag(CEPH_OSDMAP_FULL | + CEPH_OSDMAP_PAUSERD | CEPH_OSDMAP_PAUSEWR | CEPH_OSDMAP_NOUP | CEPH_OSDMAP_NODOWN |