]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
src/mgr/DaemonServer.cc: fix typo in output gap >= max_pg_num_change 46785/head
authorKamoltat <ksirivad@redhat.com>
Tue, 21 Jun 2022 20:06:07 +0000 (20:06 +0000)
committerKamoltat <ksirivad@redhat.com>
Tue, 21 Jun 2022 20:11:04 +0000 (20:11 +0000)
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 <ksirivad@redhat.com>
src/mgr/DaemonServer.cc

index 03a5867a3382198e5dc95f0dea718a7f03dee229..b8120a14a7ec7a16334d2d10f9c7c218a14d9ddf 100644 (file)
@@ -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 {