mute failing test: org.elasticsearch.index.shard.RefreshListenersTests.testConcurrentRefresh

This commit is contained in:
Alpar Torok 2019-01-09 13:43:21 +02:00
parent 9122585359
commit 7ff846ffb2

View File

@ -264,6 +264,7 @@ public class RefreshListenersTests extends ESTestCase {
* adding listeners. This can catch the situation where a refresh happens right as the listener is being added such that the listener * adding listeners. This can catch the situation where a refresh happens right as the listener is being added such that the listener
* misses the refresh and has to catch the next one. If the listener wasn't able to properly catch the next one then this would fail. * misses the refresh and has to catch the next one. If the listener wasn't able to properly catch the next one then this would fail.
*/ */
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/37261")
public void testConcurrentRefresh() throws Exception { public void testConcurrentRefresh() throws Exception {
AtomicBoolean run = new AtomicBoolean(true); AtomicBoolean run = new AtomicBoolean(true);
Thread refresher = new Thread(() -> { Thread refresher = new Thread(() -> {