[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:
parent
3a9e371edb
commit
7381e68d14
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue