Skip to content

Commit 7254e6f

Browse files
committed
Fix up after elastic#39603
1 parent 579dd82 commit 7254e6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

x-pack/plugin/ccr/src/main/java/org/elasticsearch/xpack/ccr/action/AutoFollowCoordinator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ private void checkAutoFollowPattern(String autoFollowPattenName,
433433
ActionListener.wrap(
434434
rs -> resultHandler.accept(new AutoFollowResult(autoFollowPattenName, new ArrayList<>(rs))),
435435
e -> { throw new AssertionError("must never happen", e); }),
436-
leaderIndicesToFollow.size(), Collections.emptyList());
436+
leaderIndicesToFollow.size());
437437

438438
for (final Index indexToFollow : leaderIndicesToFollow) {
439439
List<String> otherMatchingPatterns = patternsForTheSameRemoteCluster.stream()

0 commit comments

Comments
 (0)