summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSage Weil <sage@inktank.com>2013-08-13 16:39:28 -0700
committerSage Weil <sage@inktank.com>2013-08-13 16:51:57 -0700
commitc926d083736eef3f8569ca58c019e55ee35da4e1 (patch)
treeb467721b7c4370129211931daabaf6ca16338d24
parenteeed33aa4c873f4e96bf28763be9c7be3c0ad5b8 (diff)
downloadceph-c926d083736eef3f8569ca58c019e55ee35da4e1.tar.gz
mon: move mdsmap up
Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r--src/mon/Monitor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mon/Monitor.cc b/src/mon/Monitor.cc
index 2afa7f64285..36774d3199a 100644
--- a/src/mon/Monitor.cc
+++ b/src/mon/Monitor.cc
@@ -1833,9 +1833,9 @@ void Monitor::get_status(stringstream &ss, Formatter *f)
ss << " health " << health << "\n";
ss << " monmap " << *monmap << ", election epoch " << get_epoch()
<< ", quorum " << get_quorum() << " " << get_quorum_names() << "\n";
+ ss << " mdsmap " << mdsmon()->mdsmap << "\n";
osdmon()->osdmap.print_summary(NULL, ss);
pgmon()->pg_map.print_summary(NULL, &ss);
- ss << " mdsmap " << mdsmon()->mdsmap << "\n";
}
}