Upgrade to feign 13.0 (#931)

This commit is contained in:
Olga Maciaszek-Sharma
2023-11-14 16:04:08 +01:00
committed by GitHub
parent 942cc6985c
commit 9ad6708944
5 changed files with 6 additions and 4 deletions

View File

@@ -429,7 +429,7 @@ public class FeignClientUsingPropertiesTests {
public static class BazResponseInterceptor implements ResponseInterceptor {
@Override
public Object aroundDecode(InvocationContext invocationContext) {
public Object intercept(InvocationContext invocationContext, Chain chain) throws Exception {
return "baz";
}