File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
services/web/server/src/simcore_service_webserver Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ async def app_factory() -> web.Application:
7272 "Using application factory: %s" , app_settings .WEBSERVER_APP_FACTORY_NAME
7373 )
7474
75- logging_lifespan_cleanup_event = await setup_logging (app_settings )
75+ logging_lifespan_cleanup_event = setup_logging (app_settings )
7676
7777 if app_settings .WEBSERVER_APP_FACTORY_NAME == "WEBSERVER_AUTHZ_APP_FACTORY" :
7878 app = create_application_auth ()
Original file line number Diff line number Diff line change 3131CleanupEvent : TypeAlias = Callable [[web .Application ], Awaitable [None ]]
3232
3333
34- async def setup_logging (app_settings : ApplicationSettings ) -> CleanupEvent :
34+ def setup_logging (app_settings : ApplicationSettings ) -> CleanupEvent :
3535 exit_stack = AsyncExitStack ()
3636 exit_stack .enter_context (
3737 setup_async_loggers_lifespan (
You can’t perform that action at this time.
0 commit comments