File tree Expand file tree Collapse file tree 1 file changed +1
-26
lines changed
services/storage/src/simcore_service_storage/core Expand file tree Collapse file tree 1 file changed +1
-26
lines changed Original file line number Diff line number Diff line change @@ -89,32 +89,6 @@ class ApplicationSettings(BaseApplicationSettings, MixinLoggingSettings):
8989 ),
9090 ]
9191
92- STORAGE_LOG_FORMAT_LOCAL_DEV_ENABLED : Annotated [
93- bool ,
94- Field (
95- default = False ,
96- validation_alias = AliasChoices (
97- "STORAGE_LOG_FORMAT_LOCAL_DEV_ENABLED" ,
98- "LOG_FORMAT_LOCAL_DEV_ENABLED" ,
99- ),
100- )
101- ]
102-
103- STORAGE_RABBITMQ : Annotated [
104- RabbitSettings | None ,
105- Field (
106- json_schema_extra = {"auto_default_from_env" : True },
107- ),
108- ]
109-
110- STORAGE_S3_CLIENT_MAX_TRANSFER_CONCURRENCY : Annotated [
111- int ,
112- Field (
113- 4 ,
114- description = "Maximal amount of threads used by underlying S3 client to transfer data to S3 backend" ,
115- ),
116- ]
117-
11892 STORAGE_LOG_FORMAT_LOCAL_DEV_ENABLED : Annotated [
11993 bool ,
12094 Field (
@@ -126,6 +100,7 @@ class ApplicationSettings(BaseApplicationSettings, MixinLoggingSettings):
126100 description = "Enables local development _logger format. WARNING: make sure it is disabled if you want to have structured logs!" ,
127101 ),
128102 ]
103+
129104 STORAGE_LOG_FILTER_MAPPING : Annotated [
130105 dict [LoggerName , list [MessageSubstring ]],
131106 Field (
You can’t perform that action at this time.
0 commit comments