deepak-chhetri
deepak-chhetri
> @deepak-chhetri can you share the sample post-filter logic you have implemented? @shashikanth8639 Post filter is implemented in following way: ``` @Override public Mono filter(ServerWebExchange exchange, GatewayFilterChain chain) { return...
> @deepak-chhetri have you tried using the onError method? Thanks @shashikanth8639 for sharing the pointer. Do you mean Mono.onError()(publisher) method? However I need to figure out why post filters are...
> 400 and 500 errors are responses from the server. A timeout is a local exception. Have you tried [#3264 (comment)](https://github.com/spring-cloud/spring-cloud-gateway/issues/3264#issuecomment-1946246543) @spencergibb Spring Cloud Gateway is timeout the downstream endpoint...
@spencergibb Is this feature released in 4.x spring cloud gateway version? If not then by when it will become available?
@kimmking Thanks for checking. I have implemented above code in one of the pre filter which is a global filter. This pre filter executes as part of multiple global pre...
@kimmking Thanks for your suggestion. I have already checked RedirectTo gateway filter. However, the scenario that I am trying to implement can be implemented programmatically only and not through configuration....
@spencergibb this issue is resolved. The updated redirection status was not propagated in filter chain due to which 200 status was getting returned. However, after redirection the subsequent global pre...