Skip to content

Commit b0f22d6

Browse files
committed
fixed not returning response instance
1 parent 575f339 commit b0f22d6

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/CcrStatsAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ private CcrStatsAction() {
4040

4141
@Override
4242
public TasksResponse newResponse() {
43-
return null;
43+
return new TasksResponse();
4444
}
4545

4646
public static class TasksResponse extends BaseTasksResponse implements ToXContentObject {

0 commit comments

Comments
 (0)