From e7a785584fb5f88f75193d39c050c0b0018c5285 Mon Sep 17 00:00:00 2001 From: Kamoltat Date: Tue, 21 Jun 2022 20:06:07 +0000 Subject: [PATCH] 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 (cherry picked from commit 10d2d2e2dd613badd0801763b0586d524dfc2121) --- src/mgr/DaemonServer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mgr/DaemonServer.cc b/src/mgr/DaemonServer.cc index 509a540ec320..a9d77401a898 100644 --- a/src/mgr/DaemonServer.cc +++ b/src/mgr/DaemonServer.cc @@ -2779,7 +2779,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 { -- 2.47.3