From: Sebastian Wagner Date: Fri, 21 Feb 2020 14:53:32 +0000 (+0100) Subject: mgr/cephadm: set thread pool size to 10 X-Git-Tag: v15.1.1~243^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=c6bfc4de3d86a267729d60f207a8da601693782a;p=ceph-ci.git mgr/cephadm: set thread pool size to 10 Signed-off-by: Sebastian Wagner --- 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()