Skip to content

Commit 33edd22

Browse files
committed
Fix method parameter
1 parent f6592f5 commit 33edd22

File tree

1 file changed

+1
-1
lines changed
  • x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ccr/client

1 file changed

+1
-1
lines changed

x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ccr/client/CcrClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public void forgetFollower(final ForgetFollowerAction.Request request, final Act
102102
client.execute(ForgetFollowerAction.INSTANCE, request, listener);
103103
}
104104

105-
public ActionFuture<BroadcastResponse> forgetFollower(final UnfollowAction.Request request) {
105+
public ActionFuture<BroadcastResponse> forgetFollower(final ForgetFollowerAction.Request request) {
106106
final PlainActionFuture<BroadcastResponse> listener = PlainActionFuture.newFuture();
107107
client.execute(ForgetFollowerAction.INSTANCE, request, listener);
108108
return listener;

0 commit comments

Comments
 (0)