Skip to content

Commit 5eab207

Browse files
fix enum serialization
1 parent 6e5ae15 commit 5eab207

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ def setup_settings(app: web.Application) -> ApplicationSettings:
476476
app[APP_SETTINGS_KEY] = settings
477477
_logger.debug(
478478
"Captured app settings:\n%s",
479-
app[APP_SETTINGS_KEY].model_dump_json(indent=1),
479+
app[APP_SETTINGS_KEY].model_dump_json(indent=1, warnings=False),
480480
)
481481
return settings
482482

0 commit comments

Comments
 (0)