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 29dd23f commit 8758e10Copy full SHA for 8758e10
services/dynamic-scheduler/src/simcore_service_dynamic_scheduler/core/application.py
@@ -34,7 +34,8 @@
34
from .settings import ApplicationSettings
35
36
37
-async def _lifespan_banner(_: FastAPI) -> AsyncIterator[State]:
+async def _lifespan_banner(app: FastAPI) -> AsyncIterator[State]:
38
+ _ = app
39
print(APP_STARTED_BANNER_MSG, flush=True) # noqa: T201
40
yield {}
41
print(APP_FINISHED_BANNER_MSG, flush=True) # noqa: T201
0 commit comments