We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad768be commit c21c87cCopy full SHA for c21c87c
services/storage/src/simcore_service_storage/core/application.py
@@ -73,9 +73,9 @@ def create_app(settings: ApplicationSettings) -> FastAPI: # noqa: C901
73
if settings.STORAGE_CELERY:
74
setup_task_manager(app, settings=settings.STORAGE_CELERY)
75
76
- if not settings.STORAGE_WORKER_MODE:
77
- setup_rabbitmq(app)
78
- setup_rpc_routes(app)
+ if not settings.STORAGE_WORKER_MODE:
+ setup_rabbitmq(app)
+ setup_rpc_routes(app)
79
80
setup_rest_api_routes(app, API_VTAG)
81
set_exception_handlers(app)
0 commit comments