From: Kamoltat Date: Tue, 21 Jun 2022 20:06:07 +0000 (+0000) Subject: src/mgr/DaemonServer.cc: fix typo in output gap >= max_pg_num_change X-Git-Tag: v18.0.0~626^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F46785%2Fhead;p=ceph.git src/mgr/DaemonServer.cc: fix typo in output gap >= max_pg_num_change Fix typo of the output when pgnum is scaling faster than pgp_num in the function DaemonServer::adjust_pgs(). Fixes: https://tracker.ceph.com/issues/56151 Signed-off-by: Kamoltat --- diff --git a/src/mgr/DaemonServer.cc b/src/mgr/DaemonServer.cc index 03a5867a33821..b8120a14a7ec7 100644 --- a/src/mgr/DaemonServer.cc +++ b/src/mgr/DaemonServer.cc @@ -2826,7 +2826,7 @@ void DaemonServer::adjust_pgs() dout(10) << "pool " << i.first << " pg_num " << p.get_pg_num() << " - pgp_num " << p.get_pgp_num() - << " gap > max_pg_num_change " << max_jump + << " gap >= max_pg_num_change " << max_jump << " - must scale pgp_num first" << dendl; } else {