From c6bfc4de3d86a267729d60f207a8da601693782a Mon Sep 17 00:00:00 2001 From: Sebastian Wagner Date: Fri, 21 Feb 2020 15:53:32 +0100 Subject: [PATCH] mgr/cephadm: set thread pool size to 10 Signed-off-by: Sebastian Wagner --- src/pybind/mgr/cephadm/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/cephadm/module.py b/src/pybind/mgr/cephadm/module.py index 744071bd996..0fa92d0bda4 100644 --- a/src/pybind/mgr/cephadm/module.py +++ b/src/pybind/mgr/cephadm/module.py @@ -511,7 +511,7 @@ class CephadmOrchestrator(MgrModule, orchestrator.OrchestratorClientMixin): raise RuntimeError("unable to read cephadm at '%s': %s" % ( path, str(e))) - self._worker_pool = multiprocessing.pool.ThreadPool(1) + self._worker_pool = multiprocessing.pool.ThreadPool(10) self._reconfig_ssh() -- 2.39.5