Skip to content

Commit

Permalink
Fixed compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
marcingrzejszczak committed Sep 21, 2022
1 parent 9119a61 commit 8832aff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/feign/AsyncFeign.java
Expand Up @@ -217,7 +217,7 @@ public AsyncFeign<C> build() {

final SynchronousMethodHandler.Factory synchronousMethodHandlerFactory =
new SynchronousMethodHandler.Factory(stageExecution(activeContextHolder, client), retryer,
requestInterceptors,
requestInterceptors, this.clientInterceptors,
responseInterceptor, logger, logLevel, dismiss404, closeAfterDecode,
propagationPolicy, true);
final ParseHandlersByName handlersByName =
Expand Down
2 changes: 1 addition & 1 deletion core/src/test/java/feign/BaseBuilderTest.java
Expand Up @@ -27,7 +27,7 @@ public class BaseBuilderTest {
public void checkEnrichTouchesAllAsyncBuilderFields()
throws IllegalArgumentException, IllegalAccessException {
test(AsyncFeign.builder().requestInterceptor(template -> {
}).clientInterceptor(ClientInterceptor.DEFAULT), 14);
}).clientInterceptor(ClientInterceptor.DEFAULT), 15);
}

private void test(BaseBuilder<?> builder, int expectedFieldsCount)
Expand Down

0 comments on commit 8832aff

Please sign in to comment.