Upgrade Feign to 13.0. Upgrade Surefire plugin to 3.2.2. Regenerate configprops.

This commit is contained in:
Olga MaciaszekSharma
2023-11-14 15:58:45 +01:00
parent 09f4f197ba
commit 999aaedb5f
4 changed files with 5 additions and 3 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";
}