[MUTE] AwaitsFix failing tests

This commit mutes failing tests in:
    * IndicesClientIT
    * SearchIT (Freeze/UnFreeze)
    * IndicesClientDocumentationIT

Fixes are identified and will be merged in a followup PR.

Signed-off-by: Peter Nied <petern@amazon.com>
This commit is contained in:
Nicholas Knize 2021-02-09 05:03:55 +00:00 committed by Peter Nied
parent 3a9e371edb
commit 7381e68d14
3 changed files with 4 additions and 0 deletions

View File

@ -1979,6 +1979,7 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
assertNotNull(detailsResponse.detail());
}
@AwaitsFix(bugUrl = "https://github.com/opendistro-for-elasticsearch/search/issues/57")
public void testFreezeAndUnfreeze() throws IOException {
createIndex("test", Settings.EMPTY);
RestHighLevelClient client = highLevelClient();

View File

@ -1380,6 +1380,7 @@ public class SearchIT extends ESRestHighLevelClientTestCase {
assertEquals(3, countResponse.getCount());
}
@AwaitsFix(bugUrl = "https://github.com/opendistro-for-elasticsearch/search/issues/61")
public void testSearchWithBasicLicensedQuery() throws IOException {
SearchRequest searchRequest = new SearchRequest("index");
SearchSourceBuilder searchSourceBuilder = new SearchSourceBuilder();

View File

@ -2952,6 +2952,7 @@ public class IndicesClientDocumentationIT extends ESRestHighLevelClientTestCase
}
@AwaitsFix(bugUrl = "https://github.com/opendistro-for-elasticsearch/search/issues/57")
public void testFreezeIndex() throws Exception {
RestHighLevelClient client = highLevelClient();
@ -3030,6 +3031,7 @@ public class IndicesClientDocumentationIT extends ESRestHighLevelClientTestCase
}
}
@AwaitsFix(bugUrl = "https://github.com/opendistro-for-elasticsearch/search/issues/57")
public void testUnfreezeIndex() throws Exception {
RestHighLevelClient client = highLevelClient();