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 d486423 commit 44f48dbCopy full SHA for 44f48db
services/web/server/src/simcore_service_webserver/cli.py
@@ -53,8 +53,11 @@ def _setup_app_from_settings(
53
return (app, config)
54
55
56
-async def _app_factory() -> web.Application:
57
- """Created to launch app from gunicorn (see docker/boot.sh)"""
+async def app_factory() -> web.Application:
+ """WARNING: this is called in the entrypoint of the service. DO NOT CHAGE THE NAME!
58
+
59
+ Created to launch app from gunicorn (see docker/boot.sh)
60
+ """
61
from .application import create_application_auth
62
from .log import setup_logging
63
0 commit comments