Skip to content

Commit 76e86bc

Browse files
committed
adds setup
1 parent 779c473 commit 76e86bc

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

services/web/server/src/simcore_service_webserver/application.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
from aiohttp import web
99
from servicelib.aiohttp.application import create_safe_application
10+
from simcore_service_webserver.realtime.bootstrap import setup_realtime_collaboration
1011

1112
from ._meta import WELCOME_DB_LISTENER_MSG, WELCOME_GC_MSG, WELCOME_MSG, info
1213
from .activity.plugin import setup_activity
@@ -160,6 +161,7 @@ def create_application() -> web.Application:
160161
setup_publications(app)
161162
setup_studies_dispatcher(app)
162163
setup_exporter(app)
164+
setup_realtime_collaboration(app)
163165

164166
# NOTE: *last* events
165167
app.on_startup.append(_welcome_banner)

services/web/server/src/simcore_service_webserver/realtime/bootstrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
settings_name="WEBSERVER_REALTIME_COLLABORATION",
1313
logger=_logger,
1414
)
15-
def setup_realtime_feature(app: web.Application):
15+
def setup_realtime_collaboration(app: web.Application):
1616
assert app["settings"].WEBSERVER_REALTIME_COLLABORATION # nosec

0 commit comments

Comments
 (0)