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 30bec21 commit 10a5612Copy full SHA for 10a5612
services/web/server/src/simcore_service_webserver/garbage_collector/plugin.py
@@ -3,6 +3,7 @@
3
from aiohttp import web
4
from servicelib.aiohttp.application_setup import ModuleCategory, app_module_setup
5
from servicelib.logging_utils import set_parent_module_log_level
6
+from simcore_service_webserver.products.plugin import setup_products
7
8
from ..application_settings import get_application_settings
9
from ..login.plugin import setup_login_storage
@@ -21,6 +22,9 @@
21
22
logger=_logger,
23
)
24
def setup_garbage_collector(app: web.Application) -> None:
25
+ # for trashing
26
+ setup_products(app)
27
+
28
# - project-api needs access to db
29
setup_projects_db(app)
30
# - project needs access to socketio via notify_project_state_update
0 commit comments