Skip to content

Commit

Permalink
Mute EqlSearchIt.testMultiValueFields (#76623)
Browse files Browse the repository at this point in the history
This commit mutes testMultiValueFields, as it is flaky (see #76618)
  • Loading branch information
gwbrown authored Aug 17, 2021
1 parent 207f783 commit cd98d99
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
/**
* Class testing the behavior of events and sequence queries in a mixed cluster scenario (during rolling upgrade).
* The test is against a three-node cluster where one node is upgraded, the other two are on the old version.
*
*
*/
public class EqlSearchIT extends ESRestTestCase {

Expand All @@ -66,7 +66,7 @@ public void createIndex() throws IOException {
numDocs = randomIntBetween(numShards, 15);
newNodes = new ArrayList<>(nodes.getNewNodes());
bwcNodes = new ArrayList<>(nodes.getBWCNodes());

String mappings = readResource(EqlSearchIT.class.getResourceAsStream("/eql_mapping.json"));
createIndex(
index,
Expand Down Expand Up @@ -106,6 +106,7 @@ public void testSequencesWithRequestToUpgradedNodes() throws Exception {
* if their version is lower than {@code org.elasticsearch.xpack.eql.execution.search.RuntimeUtils.SWITCH_TO_MULTI_VALUE_FIELDS_VERSION}
* version.
*/
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/76618")
public void testMultiValueFields() throws Exception {
final String bulkEntries = readResource(EqlSearchIT.class.getResourceAsStream("/eql_data.json"));
Request bulkRequst = new Request("POST", index + "/_bulk?refresh");
Expand Down

0 comments on commit cd98d99

Please sign in to comment.