]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
mon/health_checks: format 'health summary' with a colon
authorSage Weil <sage@redhat.com>
Tue, 30 Jul 2019 15:01:28 +0000 (10:01 -0500)
committerSage Weil <sage@redhat.com>
Thu, 15 Aug 2019 01:37:00 +0000 (20:37 -0500)
Signed-off-by: Sage Weil <sage@redhat.com>
src/mon/health_check.h

index f3826ee60aacc73dd87ba4c08c63c248490c6895..112ab8b53d4775a1e2277e4508875d4076edbefa 100644 (file)
@@ -171,7 +171,7 @@ struct health_check_map_t {
 
   void dump_detail(std::string *plain) const {
     for (auto& p : checks) {
-      *plain += p.first + " " + p.second.summary + "\n";
+      *plain += p.first + ": " + p.second.summary + "\n";
       for (auto& d : p.second.detail) {
         *plain += "    ";
         *plain += d;