From 261c769333582247a149ade406ccffe2dce3be23 Mon Sep 17 00:00:00 2001 From: Varsha Rao Date: Fri, 22 May 2020 11:50:50 +0000 Subject: [PATCH] qa/tasks/mgr: Don't disable cephadm module Fixes: https://tracker.ceph.com/issues/45596 Signed-off-by: Varsha Rao --- qa/tasks/mgr/mgr_test_case.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/mgr/mgr_test_case.py b/qa/tasks/mgr/mgr_test_case.py index 70faa2a2b4f..37baeb20e41 100644 --- a/qa/tasks/mgr/mgr_test_case.py +++ b/qa/tasks/mgr/mgr_test_case.py @@ -73,7 +73,7 @@ class MgrTestCase(CephTestCase): # Unload all non-default plugins loaded = json.loads(cls.mgr_cluster.mon_manager.raw_cluster_cmd( "mgr", "module", "ls"))['enabled_modules'] - unload_modules = set(loaded) - {"restful"} + unload_modules = set(loaded) - {"cephadm", "restful"} for m in unload_modules: cls.mgr_cluster.mon_manager.raw_cluster_cmd( -- 2.47.3