Francesco Poli
Francesco Poli
Yes; using this yaml configuration for the Spring Boot Gateway application: spring: main: banner-mode: off application: name: "myapp-gateway" cloud: discovery: client: health-indicator: enabled: true enabled: true gateway: discovery: locator: enabled:...
Enabling the actuator endpoint for refresh in the application.yml file like this: management: endpoint: gateway: enabled: true health: probes: enabled: true show-details: always info: enabled: true prometheus: enabled: true endpoints:...
Anyway, if this is the way to do this, perhaps the documentation may contain some references that aren't no more correct... I mean, the @EnableScheduling annotation referred before.
Thank you for the explanation; I'll give a try to that RouteRefreshListener, or something that, internally to the same gateway, may trigger the event (some kind of a self RestTemplate,...
@spencergibb you are suggesting to merge the two classes into one single predicate factory, that can manage both cases, right? I can do it, paying attention not to introduce regressions...
@spencergibb I modified the `QueryRoutePredicateFactory` class to unify the `regexp` and `predicate` approach. Let me know if this is what you meant, so that I can proceed with adjustments on...
Ok, I removed the `QueryParamRoutePredicateFactory` and `QueryParamRoutePredicateFactoryTests` and extend the current `QueryRoutePredicateFactoryTests` to cover the new options. I also fixed the checkstyle errors that made the build fail.
Hi @spencergibb , is there something that stills blocks this pull request? I can't see any change request that has to be done.
There was a format error in the header of the test class, I fixed it.
Thank you, @spencergibb Just two questions... First, about documentation update: this change has to be shown also in the `request-predicates-factories.html` page? If so, which is the process for update the...