소스 검색

Fix compilation in unfollow action tests

This arose when two commits were pushed at roughly the same time, both
of which compiled successfully against master, but not when taken
together. This commit fixes a reference in one of the commits that was
changed in the other commit.
Jason Tedor 7 년 전
부모
커밋
80f7c1dcc9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      x-pack/plugin/ccr/src/test/java/org/elasticsearch/xpack/ccr/action/TransportUnfollowActionTests.java

+ 1 - 1
x-pack/plugin/ccr/src/test/java/org/elasticsearch/xpack/ccr/action/TransportUnfollowActionTests.java

@@ -78,7 +78,7 @@ public class TransportUnfollowActionTests extends ESTestCase {
             new ShardId("leader_index", "", 0),
             1024,
             1,
-            TransportResumeFollowAction.DEFAULT_MAX_BATCH_SIZE_IN_BYTES,
+            TransportResumeFollowAction.DEFAULT_MAX_BATCH_SIZE,
             1,
             10240,
             TimeValue.timeValueMillis(10),