From 6b1c894b2b083bf6cead21e9f96d304b2eb7887d Mon Sep 17 00:00:00 2001 From: Vikhyat Umrao Date: Fri, 20 May 2016 23:09:46 +0530 Subject: [PATCH] mon : Display full flag in ceph status if full flag is set Fixes: http://tracker.ceph.com/issues/15809 Signed-off-by: Vikhyat Umrao --- src/mon/OSDMonitor.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mon/OSDMonitor.cc b/src/mon/OSDMonitor.cc index c9f46f054e1a..7bdd2732c567 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 | -- 2.47.3