From 154c5d616aa8a8ef216e7b9a3944adbe05b531cc Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 22 Nov 2021 16:42:57 -0500 Subject: [PATCH] mgr: set max of 32 pgs for .mgr pool Signed-off-by: Sage Weil (cherry picked from commit 09642a8ce8d1a0429e275dc02cf7849f22483fdb) Conflicts: src/pybind/mgr/mgr_module.py - made changes in ../src/pybind/mgr/devicehealth/module.py instead since there is no .mgr pool but instead devicehealth --- src/pybind/mgr/devicehealth/module.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pybind/mgr/devicehealth/module.py b/src/pybind/mgr/devicehealth/module.py index 076eabbbb6c..244b0ef9749 100644 --- a/src/pybind/mgr/devicehealth/module.py +++ b/src/pybind/mgr/devicehealth/module.py @@ -278,6 +278,7 @@ class Module(MgrModule): 'pool': self.pool_name, 'pg_num': 1, 'pg_num_min': 1, + 'pg_num_max': 32, }), '') r, outb, outs = result.wait() assert r == 0 -- 2.47.3