Ryan Baxter

Results 639 comments of Ryan Baxter

I believe it would, see the `NOTE` in this section of our documentation https://docs.spring.io/spring-cloud-config/docs/4.0.3/reference/html/#config-client-fail-fast Spring Cloud Config 2.0.0.M9 is not supported any longer, I would at least upgrade to Spring...

What if you remove the `fail-fast` property and just set `spring.config.import=optional:configserver:"? If the client can't reach the config server in that case it should just continue on.

If fail-fast is set to true it means to fail on startup if it can't reach the config server. You want the application to startup and use `application.yaml` if it...

Even `spring.config.import` does not do this, when you use `spring.config.import` each import statement is still its own property source. You can have the config server serve up the files in...

So are you using the config server to serve up specific files? Can you provide an example of the requests you are making to the config server?

Essentially what you are looking for a way to return multiple config files in a single request, correct?

Does the label (aka branch) `1.0.0` exist in the default git repo? I am guessing what is happening is you are requesting a label that exists in the `staging` repo...

We cannot change the way it behaves currently because that would be a breaking change for others relying on this functionality. > I couldn't find anything in the documentation, but...

So what you want is to specify multiple git repos, but if one matches but an exception is thrown you don't want it to try matching the rest of the...

Thanks! This will take some time to be merged because we need to wait for a major release to put it into. I have added it to our planning doc...