From 767508dffa4660dfb418e102c8067e8345cda44c Mon Sep 17 00:00:00 2001 From: Mark Syms Date: Tue, 30 Jun 2020 09:24:07 +0100 Subject: [PATCH] CA-341777: pass args in the correct order Signed-off-by: Mark Syms --- drivers/mpathcount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mpathcount.py b/drivers/mpathcount.py index 6577c7b12..0718c3bd6 100755 --- a/drivers/mpathcount.py +++ b/drivers/mpathcount.py @@ -228,7 +228,7 @@ def _add(key, val): session.xenapi.host.add_to_other_config(localhost,key,val) config = session.xenapi.host.get_other_config(localhost) maps = mpath_cli.list_maps() - check_root_disk(config, maps, _add, _remove) + check_root_disk(config, maps, _remove, _add) except: util.SMlog("MPATH: Failure updating Host.other-config:mpath-boot db")