Skip to content

Commit

Permalink
Mute failing AsyncTwoPhaseIndexerTests
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkyle authored and Gurkan Kaymak committed May 27, 2019
1 parent 04c8b4e commit 16886b8
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ public XContentBuilder toXContent(XContentBuilder builder, Params params) throws
}
}

@AwaitsFix( bugUrl = "https://github.com/elastic/elasticsearch/issues/42084")
public void testStateMachine() throws Exception {
AtomicReference<IndexerState> state = new AtomicReference<>(IndexerState.STOPPED);
final ExecutorService executor = Executors.newFixedThreadPool(1);
Expand Down Expand Up @@ -264,6 +265,7 @@ public void testStateMachineBrokenSearch() throws InterruptedException {
}
}

@AwaitsFix( bugUrl = "https://github.com/elastic/elasticsearch/issues/42084")
public void testStop_AfterIndexerIsFinished() throws InterruptedException {
AtomicReference<IndexerState> state = new AtomicReference<>(IndexerState.STOPPED);
final ExecutorService executor = Executors.newFixedThreadPool(1);
Expand All @@ -283,6 +285,7 @@ public void testStop_AfterIndexerIsFinished() throws InterruptedException {
}
}

@AwaitsFix( bugUrl = "https://github.com/elastic/elasticsearch/issues/42084")
public void testStop_WhileIndexing() throws InterruptedException {
AtomicReference<IndexerState> state = new AtomicReference<>(IndexerState.STOPPED);
final ExecutorService executor = Executors.newFixedThreadPool(1);
Expand Down

0 comments on commit 16886b8

Please sign in to comment.