File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
services/datcore-adapter/src/simcore_service_datcore_adapter/core Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 44from pydantic import AliasChoices , Field , TypeAdapter , field_validator
55from pydantic .networks import AnyUrl
66from servicelib .logging_utils_filtering import LoggerName , MessageSubstring
7+ from settings_library .application import BaseApplicationSettings
78from settings_library .base import BaseCustomSettings
89from settings_library .tracing import TracingSettings
910from settings_library .utils_logging import MixinLoggingSettings
@@ -19,10 +20,7 @@ class PennsieveSettings(BaseCustomSettings):
1920 PENNSIEVE_HEALTCHCHECK_TIMEOUT : float = 1.0
2021
2122
22- class ApplicationSettings (BaseCustomSettings , MixinLoggingSettings ):
23- # DOCKER
24- SC_BOOT_MODE : BootModeEnum | None
25-
23+ class ApplicationSettings (BaseApplicationSettings , MixinLoggingSettings ):
2624 LOG_LEVEL : LogLevel = Field (
2725 default = LogLevel .INFO .value ,
2826 validation_alias = AliasChoices (
You can’t perform that action at this time.
0 commit comments