Stefan Fussenegger

Results 14 comments of Stefan Fussenegger

@spencergibb it's been a while but I agree that really writing down the meaning of the terms application name, virtual host name, host name, instance id, and service id would...

Is there any update to this? I guess a simple `NotPath` predicate could do the trick: ```java @Component public class NotPathRoutePredicateFactory extends PathRoutePredicateFactory { @Override public Predicate apply(final Config config)...

here's a simple implementation that might help with support for `spring.profiles.active` and `spring.profiles.include`: ```java /** * * resolve active profiles from {@link ActiveProfiles#profiles() @ActiveProfiles} by default and allow overriding (using...

@snicoll I think with the maven-failsafe-plugin use-case there is even an argument to be made for adding something like `@ActiveProfiles(profiles = "testing", profileIncludeProperty = "spring.test.profiles.include", includeProfiles = true)` to allow...

@snicoll Not sure about the "we're discussing" when the last comment other than mine is from 2018 ;) If there is an ongoing discussion in a related ticket that brought...

No, I'm not Alex but I don't see how my suggestion is outside of the scope. I think in a nutshell this is the proposal (with proposal 2 suggested to...

I ran into the same problem. I've tracked the issue down to `DelegatingMetricsConfiguration.setMetricsConfigurers(List configurers)`. The issue is that `configurers` contains itself (i.e. `this`), obviously a big no-no for a list...