feign-annotation-error-decoder icon indicating copy to clipboard operation
feign-annotation-error-decoder copied to clipboard

Results 10 feign-annotation-error-decoder issues
Sort by recently updated
recently updated
newest added

feign core 11.0 upgrade ` TEST_RESPONSE = Response.builder() .status(500) .body((Response.Body) null) .headers(testHeaders) .request(Request.create(Request.HttpMethod.GET, "http://test", testHeaders, null)) .build(); }` Request.create ERROR When will versions be compatible? project Run Error log `...

Ok as i can see, you have already migrated the minor api change. When do you think the 1.3.1 will be released?

There seems to be an issue when trying to use this within Spring Cloud/Eureka setup. Using the @FeignClient annoation `@FeignClient(name = "myResource", url = "${my.endpoint}", configuration = MyResourceConfig.class)` Defining the...

Waiting for feedback

**Version** 1.3.0 **Problem** Hi, I'm using the @FeignExceptionConstructor with a custom exception like: `@FeignExceptionConstructor` `public ExternalApiException(final Response response) {` `if(response != null){` `// extract info from response` `log.error(...) // print...

In your README you give an example of RetryAfterCertainTimeException. How does this work with Feign's `RetryableException`? I'm trying to implement a `RetryAfterException` that gets automatically retried, but without duplicating Feign's...

Waiting for feedback

If define error handler only a class annotation, the member value errorCodes return a empy collection of error codes and the builder only build the default generic error public class...

I am trying to decode error response body but got always `null`: code specific `ErrorCodes` error Exception classes are generated properly but with empty body: ![image](https://user-images.githubusercontent.com/341600/59361426-1f07d900-8d32-11e9-88fb-364f9999e6a4.png) `Feign`'s `OkHttp` client is...

Waiting for feedback

Feign core 10.X.X allows capturing the Request made from a Response - meaning that we can include the original request into an exception if required. The requirement here is to...

help wanted

I'm attempting to replace a custom ErrorDecoder with annotations and I utilize the `methodKey` parameter that is provided to ErrorDecoder::decode. Is there a way to get this in the exception...