Upgrade to OpenFeign 10.4.0. Fixes #220

This commit is contained in:
Ryan Baxter
2019-09-17 17:18:05 -04:00
parent c3fc93268c
commit eecc51e695
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 {