Upgrade feign-core to 10.4.0. Fixes gh-220.

This commit is contained in:
Olga Maciaszek-Sharma
2019-09-18 14:01:34 +02:00
parent 9dfc820306
commit b2791605b7
2 changed files with 3 additions and 2 deletions

View File

@@ -59,7 +59,8 @@ public class SpringDecoder implements Decoder {
return extractor.extractData(new FeignResponseAdapter(response));
}
throw new DecodeException(response.status(),
"type is not an instance of Class or ParameterizedType: " + type);
"type is not an instance of Class or ParameterizedType: " + type,
response.request());
}
private final class FeignResponseAdapter implements ClientHttpResponse {