From: Shinobu Kinjo Date: Tue, 28 Mar 2017 03:23:48 +0000 (+0900) Subject: mon/OSDMonitor: Clean up: delete extra S signature for plural X-Git-Tag: v12.0.2~213^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=daae49f9590669058185d6ba68661b9f8b13a602;p=ceph.git mon/OSDMonitor: Clean up: delete extra S signature for plural Signed-off-by: Shinobu Kinjo --- diff --git a/src/mon/OSDMonitor.cc b/src/mon/OSDMonitor.cc index 1f6024f7d908..62c1c594231b 100644 --- a/src/mon/OSDMonitor.cc +++ b/src/mon/OSDMonitor.cc @@ -3178,12 +3178,12 @@ void OSDMonitor::get_health(list >& summary, osdmap.count_full_nearfull_osds(&full, &nearfull); if (full > 0) { ostringstream ss; - ss << full << " full osds(s)"; + ss << full << " full osd(s)"; summary.push_back(make_pair(HEALTH_ERR, ss.str())); } if (nearfull > 0) { ostringstream ss; - ss << nearfull << " nearfull osds(s)"; + ss << nearfull << " nearfull osd(s)"; summary.push_back(make_pair(HEALTH_WARN, ss.str())); } }