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 59a64dc commit 9a1bc00Copy full SHA for 9a1bc00
services/web/server/src/simcore_service_webserver/cli.py
@@ -19,6 +19,7 @@
19
20
import typer
21
from aiohttp import web
22
+from common_library.json_serialization import json_dumps
23
from settings_library.utils_cli import create_settings_command
24
from typing_extensions import Annotated
25
@@ -69,7 +70,7 @@ async def app_factory() -> web.Application:
69
70
71
_logger.info(
72
"Application settings: %s",
- app_settings.model_dump_json(indent=2),
73
+ json_dumps(app_settings, indent=2, sort_keys=True),
74
)
75
76
app, _ = _setup_app_from_settings(app_settings)
0 commit comments