From: John Spray Date: Fri, 28 Feb 2014 01:26:29 +0000 (+0000) Subject: mon/OSDMonitor: missing space in string X-Git-Tag: v0.78~113^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1325%2Fhead;p=ceph.git mon/OSDMonitor: missing space in string Minor glitch. Was printing ..."exceeds per-OSD max of32)" Signed-off-by: John Spray --- diff --git a/src/mon/OSDMonitor.cc b/src/mon/OSDMonitor.cc index 7febc5b7203c..4e467b257cae 100644 --- a/src/mon/OSDMonitor.cc +++ b/src/mon/OSDMonitor.cc @@ -3153,7 +3153,7 @@ int OSDMonitor::prepare_command_pool_set(map &cmdmap, if (pgs_per_osd > g_conf->mon_osd_max_split_count) { ss << "specified pg_num " << n << " is too large (creating " << new_pgs << " new PGs on ~" << expected_osds - << " OSDs exceeds per-OSD max of" << g_conf->mon_osd_max_split_count + << " OSDs exceeds per-OSD max of " << g_conf->mon_osd_max_split_count << ')'; return -E2BIG; }