File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
services/api-server/src/simcore_service_api_server/services_rpc Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -662,15 +662,15 @@ async def get_functions_user_api_access_rights(
662662 )
663663
664664
665- def setup (app : FastAPI , rabbitmq_rmp_client : RabbitMQRPCClient ):
665+ def setup (app : FastAPI , rabbitmq_rpc_client : RabbitMQRPCClient ):
666666 webserver_settings : WebServerSettings = app .state .settings .API_SERVER_WEBSERVER
667667 if not webserver_settings :
668668 raise ConfigurationError (tip = "Webserver settings are not configured" )
669669
670670 wb_api_rpc_client = WbApiRpcClient (
671- _client = rabbitmq_rmp_client ,
671+ _client = rabbitmq_rpc_client ,
672672 _rpc_client = WebServerRpcClient (
673- rabbitmq_rmp_client , webserver_settings .WEBSERVER_RPC_NAMESPACE
673+ rabbitmq_rpc_client , webserver_settings .WEBSERVER_RPC_NAMESPACE
674674 ),
675675 )
676676 wb_api_rpc_client .set_to_app_state (app = app )
You can’t perform that action at this time.
0 commit comments