From 231c3d5a2eeb1fc3d7e7823f4454ba12f16ab54f Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 27 May 2025 14:18:08 +0900 Subject: [PATCH] Drop explicit executor argument The argument was deprecated in oslo.messaging 16.0.0, as part of huge deprecation of eventlet support. If the argument is not set, the appropriate executor is selected according to whether eventlet monkey patching is done or not. Change-Id: Ibae6876febb1961abe754f657137f48c205e37c6 Signed-off-by: Takashi Kajinami --- manila/rpc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/manila/rpc.py b/manila/rpc.py index 339a50d15b..1d345ecd46 100644 --- a/manila/rpc.py +++ b/manila/rpc.py @@ -157,7 +157,6 @@ def get_server(target, endpoints, serializer=None): return messaging.get_rpc_server(TRANSPORT, target, endpoints, - executor='eventlet', serializer=serializer, access_policy=access_policy)