From: Dan Mick Date: Tue, 23 Jul 2013 04:55:52 +0000 (-0700) Subject: mon: "status" is missing a close_section for the overall output X-Git-Tag: v0.67-rc2~15^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=96551f97d8d37222293dbe23e1e2c4cddb7544f2;p=ceph.git mon: "status" is missing a close_section for the overall output Fixes: #5720 Signed-off-by: Dan Mick Reviewed-by: Sage Weil --- diff --git a/src/mon/Monitor.cc b/src/mon/Monitor.cc index f537c915945e..957f0c7f5ca2 100644 --- a/src/mon/Monitor.cc +++ b/src/mon/Monitor.cc @@ -1832,6 +1832,7 @@ void Monitor::get_status(stringstream &ss, Formatter *f) f->open_object_section("mdsmap"); mdsmon()->mdsmap.print_summary(f, NULL); f->close_section(); + f->close_section(); } else { ss << " cluster " << monmap->get_fsid() << "\n"; ss << " health " << health << "\n";