File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
services/web/server/src/simcore_service_webserver/garbage_collector Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 33from aiohttp import web
44from servicelib .aiohttp .application_setup import ModuleCategory , app_module_setup
55from servicelib .logging_utils import set_parent_module_log_level
6+ from simcore_service_webserver .redis import setup_redis
67
78from ..application_settings import get_application_settings
89from ..login .plugin import setup_login_storage
@@ -32,6 +33,8 @@ def setup_garbage_collector(app: web.Application) -> None:
3233 # - project needs access to user-api that is connected to login plugin
3334 setup_login_storage (app )
3435
36+ setup_redis (app )
37+
3538 settings = get_plugin_settings (app )
3639
3740 app .cleanup_ctx .append (_tasks_core .create_background_task_for_garbage_collection ())
You can’t perform that action at this time.
0 commit comments