Spencer Gibb

Results 765 comments of Spencer Gibb

Did you try the suggestion here https://github.com/spring-cloud/spring-cloud-config/issues/1454#issuecomment-524380145

You must use the composite environment repository when using `spring.cloud.config.server.bootstrap=true`. I've created #1852 to address the hint. ``` spring.cloud.config.server.composite[0].type=jdbc spring.cloud.config.server.composite[0].sql= SELECT KEY, VALUE from PROPERTIES where APPLICATION=? and PROFILE=? and...

the project you shared with me didn't have a `Template.primaryJdbcTemplate()` or `DynamicDatasourceConfig`. I used what boot provides.

In your previous [comment](https://github.com/spring-cloud/spring-cloud-config/issues/1848#issuecomment-811679580) you said this URL worked `http://localhost:8888/OPO/dev/latest`. For that to be what is requested by the config client set the following values: ``` spring.application.name=OPO spring.profiles.active=dev spring.cloud.config.label=latest ```

My previous comment still stands. That is **the** way to get the values you are requesting regardless if it is embedded or not.

Were waiting for votes before this gets prioritized.

I think that this makes sense. It would require some new API. since the health check simply exercises the repository API. Maybe an interface an environment repository could implement and...