i\'d like to retry the request 3 times after waiting 10sec when response is 5xx. but i don\'t see a method that I can use. On object
WebClient.builder()
// ... .retryWhen( backoff(maxAttempts, minBackoff) .filter(throwable -> ((WebClientResponseException) throwable).getStatusCode().is5xxServerError())) // ...