File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
services/director-v2/src/simcore_service_director_v2/core/dynamic_services_settings Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -13,22 +13,22 @@ class DynamicServicesSettings(BaseCustomSettings):
1313 default = True , description = "Enables/Disables the dynamic_sidecar submodule"
1414 )
1515
16- DYNAMIC_SIDECAR : DynamicSidecarSettings = Field (auto_default_from_env = True )
16+ DYNAMIC_SIDECAR : DynamicSidecarSettings = Field (json_schema_extra = { "auto_default_from_env" : True } )
1717
1818 DYNAMIC_SCHEDULER : DynamicServicesSchedulerSettings = Field (
19- auto_default_from_env = True
19+ json_schema_extra = { "auto_default_from_env" : True }
2020 )
2121
2222 DYNAMIC_SIDECAR_PROXY_SETTINGS : DynamicSidecarProxySettings = Field (
23- auto_default_from_env = True
23+ json_schema_extra = { "auto_default_from_env" : True }
2424 )
2525
2626 DYNAMIC_SIDECAR_EGRESS_PROXY_SETTINGS : EgressProxySettings = Field (
27- auto_default_from_env = True
27+ json_schema_extra = { "auto_default_from_env" : True }
2828 )
2929
3030 DYNAMIC_SIDECAR_PLACEMENT_SETTINGS : PlacementSettings = Field (
31- auto_default_from_env = True
31+ json_schema_extra = { "auto_default_from_env" : True }
3232 )
3333
34- WEBSERVER_SETTINGS : WebServerSettings = Field (auto_default_from_env = True )
34+ WEBSERVER_SETTINGS : WebServerSettings = Field (json_schema_extra = { "auto_default_from_env" : True } )
You can’t perform that action at this time.
0 commit comments