From ed442164d52c803916ca43a5ed76047089d3da66 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 2 Nov 2017 16:18:03 -0500 Subject: [PATCH] pybind/mgr/mgr_module: fix calc_pg_upmaps This was fixed in the object cleanup. Signed-off-by: Sage Weil --- src/pybind/mgr/mgr_module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/mgr_module.py b/src/pybind/mgr/mgr_module.py index 07068d2505470..4de0a33594c57 100644 --- a/src/pybind/mgr/mgr_module.py +++ b/src/pybind/mgr/mgr_module.py @@ -99,7 +99,7 @@ class OSDMap(ceph_module.BasePyOSDMap): def calc_pg_upmaps(self, inc, max_deviation=.01, max_iterations=10, pools=[]): return self._calc_pg_upmaps( - inc._handle, + inc, max_deviation, max_iterations, pools) def map_pool_pgs_up(self, poolid): -- 2.39.5