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 1b906ef commit 027f68bCopy full SHA for 027f68b
services/storage/src/simcore_service_storage/core/application.py
@@ -31,6 +31,7 @@
31
from ..exceptions.handlers import set_exception_handlers
32
from ..modules.db import setup_db
33
from ..modules.long_running_tasks import setup_rest_api_long_running_tasks_for_uploads
34
+from ..modules.rabbitmq import setup as setup_rabbitmq
35
from ..modules.redis import setup as setup_redis
36
from ..modules.s3 import setup_s3
37
from .settings import ApplicationSettings
@@ -77,6 +78,7 @@ def create_app(settings: ApplicationSettings) -> FastAPI:
77
78
setup_s3(app)
79
setup_client_session(app)
80
81
+ setup_rabbitmq(app)
82
setup_rest_api_long_running_tasks_for_uploads(app)
83
setup_rest_api_routes(app, API_VTAG)
84
set_exception_handlers(app)
0 commit comments