You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Same problem as mentioned in spring-projects/spring-boot#23096. When loading large yaml config from consul it ends up wtih org.yaml.snakeyaml.error.YAMLException: Number of aliases for non-scalar nodes exceeds the specified max=50.
This was fixed for org.springframework.boot.env.OriginTrackedYamlLoader but is still problem in org.springframework.beans.factory.config.YamlPropertiesFactoryBean that is used by org.springframework.cloud.consul.config.ConsulPropertySource
Describe the solution you'd like
Provide a way to override the settings in org.yaml.snakeyaml.LoaderOptions or use custom org.springframework.beans.factory.config.YamlProcessor in org.springframework.cloud.consul.config.ConsulPropertySource.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Same problem as mentioned in spring-projects/spring-boot#23096. When loading large yaml config from consul it ends up wtih
org.yaml.snakeyaml.error.YAMLException: Number of aliases for non-scalar nodes exceeds the specified max=50
.This was fixed for
org.springframework.boot.env.OriginTrackedYamlLoader
but is still problem inorg.springframework.beans.factory.config.YamlPropertiesFactoryBean
that is used byorg.springframework.cloud.consul.config.ConsulPropertySource
Describe the solution you'd like
Provide a way to override the settings in
org.yaml.snakeyaml.LoaderOptions
or use customorg.springframework.beans.factory.config.YamlProcessor
inorg.springframework.cloud.consul.config.ConsulPropertySource
.The text was updated successfully, but these errors were encountered: