Open
Description
Describe the bug
According to the documentation for spring.profiles.include
the value for spring.profiles.include
is a list.
spring.profiles.include[0]=common
spring.profiles.include[1]=local
But using this in a configuration file provided via cloud config it does not work. Instead it expects the value to be a comma separated string value:
spring.profiles.include=common,local
The offending code:
In Spring Boot the configuration setting is processed as a string list:
The difference in behavior is not documented anywhere.