Skip to content

Commit 8f95fd2

Browse files
fix envs
1 parent 99ba805 commit 8f95fd2

File tree

1 file changed

+1
-26
lines changed
  • services/storage/src/simcore_service_storage/core

1 file changed

+1
-26
lines changed

services/storage/src/simcore_service_storage/core/settings.py

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)