-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Description
Hello Spring Cloud Config Team,
Maybe a small bug with Ilford 2020.0.0 and SpringBoot 2.4.1
With a web app, 2.4.1 + Ilford 2020.0.0-RC1, the properties are being picked up correctly at client side.
When the client starts, I do see below logs, very happy 😃
[ main] c.a.Application : The following profiles are active: my-env
[ main] o.s.b.context.config.ConfigDataLoader : Fetching config from server at : https://my-service/config
[ main] o.s.b.context.config.ConfigDataLoader : Located environment: name=myservice, profiles=[my-env], label=null, version=7f95facc49b97272a0a3915650b12e56ea7440bf, state=null
[ main] c.u.j.EncryptablePropertySourceConverter : Converting PropertySource configserver:https://my-git/myservice-my-env.properties [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
note profiles=[my-env]
However, same code, just one change, Ilford 2020.0.0-RC1 -> Ilford 2020.0.0, the properties are not being picked up.
On startup, I am seeing the following instead:
[ main] c.a.Application : The following profiles are active: my-env
[ main] o.s.b.context.config.ConfigDataLoader : Fetching config from server at : https://my-service/config
[ main] o.s.b.context.config.ConfigDataLoader : Located environment: name=myservice, profiles=[default], label=null, version=7f95facc49b97272a0a3915650b12e56ea7440bf, state=null
[ main] c.u.j.EncryptablePropertySourceConverter : Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
And then again reverted back to 2020.0.0-RC1, and working.
May I ask what is the root cause of this issue please?
Thank you
dnijssen, ozcanyus, dmagdaleno and Islam-Hasan