Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public void testThatFollowingIndexIsUnavailableWithNonCompliantLicense() throws
new ActionListener<AcknowledgedResponse>() {
@Override
public void onResponse(final AcknowledgedResponse response) {
latch.countDown();
fail();
}

Expand All @@ -69,6 +70,7 @@ public void testThatCreateAndFollowingIndexIsUnavailableWithNonCompliantLicense(
new ActionListener<CreateAndFollowIndexAction.Response>() {
@Override
public void onResponse(final CreateAndFollowIndexAction.Response response) {
latch.countDown();
fail();
}

Expand All @@ -86,6 +88,7 @@ public void testThatCcrStatsAreUnavailableWithNonCompliantLicense() throws Inter
client().execute(CcrStatsAction.INSTANCE, new CcrStatsAction.TasksRequest(), new ActionListener<CcrStatsAction.TasksResponse>() {
@Override
public void onResponse(final CcrStatsAction.TasksResponse tasksResponse) {
latch.countDown();
fail();
}

Expand Down