Ryan Baxter
Ryan Baxter
Can you provide a [complete, minimal, verifiable sample](https://stackoverflow.com/help/mcve) that reproduces the problem? It should be available as a GitHub (or similar) project or attached to this issue as a zip...
Can you provide a [complete, minimal, verifiable sample](https://stackoverflow.com/help/mcve) that reproduces the problem? It should be available as a GitHub (or similar) project or attached to this issue as a zip...
This doesn't work because we are not configuring the RateLimiter and applying it in Spring Cloud CircuitBreaker. Frankly RateLimiting is a bit separate from Circuit Breakers. In this particular case...
> If server.port is not written in application.yml, bus id = applicationName:0:random, this code should take the default value of server.port 8080. Why?
I am just wondering if the fact it is 0 is causing something to not work?
Could you describe the problem that manifests as a result of this? Or better yet provide a sample that reproduces the problem? This code has been like this for a...
Thank you for that explanation. If I am understanding what you said above, you are proposing we change `${server.port:0}` in `DEFAULT_SERVICE_ID_STRING` to be `${server.port:8080}`. Is that right?
Can we listen for `WebServerInitializedEvent` to get the port once it is set? ``` @EventListener public void onApplicationEvent(final WebServerInitializedEvent event) { port = event.getWebServer().getPort(); } ```
Were you able to solve this issue? Have you tried with the latest versions of Spring Boot and Spring Cloud?
Can you provide a [complete, minimal, verifiable sample](https://stackoverflow.com/help/mcve) that reproduces the problem? It should be available as a GitHub (or similar) project or attached to this issue as a zip...