]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mon/OSDMonitor: missing space in string 1325/head 1332/head
authorJohn Spray <john.spray@inktank.com>
Fri, 28 Feb 2014 01:26:29 +0000 (01:26 +0000)
committerJohn Spray <john.spray@inktank.com>
Fri, 28 Feb 2014 17:16:09 +0000 (17:16 +0000)
Minor glitch.  Was printing ..."exceeds per-OSD max of32)"

Signed-off-by: John Spray <john.spray@inktank.com>
src/mon/OSDMonitor.cc

index 7febc5b7203c47819ca22e166feeac47d9239712..4e467b257cae29bcaf3be75ab0ef67892682b43e 100644 (file)
@@ -3153,7 +3153,7 @@ int OSDMonitor::prepare_command_pool_set(map<string,cmd_vartype> &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;
     }