-
Couldn't load subscription status.
- Fork 38.8k
Closed as not planned
Closed as not planned
Copy link
Labels
in: webIssues in web modules (web, webmvc, webflux, websocket)Issues in web modules (web, webmvc, webflux, websocket)status: invalidAn issue that we don't feel is validAn issue that we don't feel is valid
Description
Configured ExchangeFilterFunction using andThen and expected them to be applied in the order provided. That is first handled for bad request, then retried and then handled for any other status codes. However any expection including 400 is handled by handleUnexpectedStatus() filter only.
WebClientExchangeFilter.zip
@Bean
public ExchangeFilterFunction webClientFilterChain() {
return handleBadRequest()
.andThen(retry())
.andThen(handleUnexpectedStatus());
}
Metadata
Metadata
Assignees
Labels
in: webIssues in web modules (web, webmvc, webflux, websocket)Issues in web modules (web, webmvc, webflux, websocket)status: invalidAn issue that we don't feel is validAn issue that we don't feel is valid