From 451f90e43e8ca8600799d9b01f9b889afe11fbb3 Mon Sep 17 00:00:00 2001 From: Arnaud M Date: Tue, 10 Dec 2024 00:42:11 +0100 Subject: [PATCH] Use threading instead of eventlet for kombu server Change-Id: I28af31bc7a9c96a621b56a68077710dc3581dcf2 Signed-off-by: Arnaud M --- mistral/rpc/kombu/kombu_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mistral/rpc/kombu/kombu_server.py b/mistral/rpc/kombu/kombu_server.py index 8e19ba6e6..4380897d6 100644 --- a/mistral/rpc/kombu/kombu_server.py +++ b/mistral/rpc/kombu/kombu_server.py @@ -84,7 +84,7 @@ class KombuRPCServer(rpc_base.RPCServer, kombu_base.Base): """Return whether server is running.""" return self._running.is_set() - def run(self, executor='eventlet'): + def run(self, executor='threading'): if self._thread is None: self._thread = threading.Thread(target=self._run, args=(executor,)) self._thread.daemon = True