From 448fc0e91ab457b58e57c6343d346dcba2f39c38 Mon Sep 17 00:00:00 2001 From: John Spray Date: Fri, 28 Feb 2014 01:26:29 +0000 Subject: [PATCH] mon/OSDMonitor: missing space in string Minor glitch. Was printing ..."exceeds per-OSD max of32)" Signed-off-by: John Spray --- src/mon/OSDMonitor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.3