Skip to content

Commit

Permalink
Increase timeout for yml tests (#48237)
Browse files Browse the repository at this point in the history
Some of these are larger than what can complete in the regular timeout.

Closes #48212
  • Loading branch information
alpar-t authored and mark-vieira committed Oct 18, 2019
1 parent 49cc8c7 commit fd1a78b
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
package org.elasticsearch.test.rest.yaml;

import com.carrotsearch.randomizedtesting.RandomizedTest;
import com.carrotsearch.randomizedtesting.annotations.TimeoutSuite;
import org.apache.http.HttpHost;
import org.apache.lucene.util.TimeUnits;
import org.elasticsearch.Version;
import org.elasticsearch.client.Node;
import org.elasticsearch.client.Request;
Expand Down Expand Up @@ -60,7 +62,10 @@
/**
* Runs a suite of yaml tests shared with all the official Elasticsearch
* clients against against an elasticsearch cluster.
*
* The suite timeout is extended to account for projects with a large number of tests.
*/
@TimeoutSuite(millis = 30 * TimeUnits.MINUTE)
public abstract class ESClientYamlSuiteTestCase extends ESRestTestCase {

/**
Expand Down

0 comments on commit fd1a78b

Please sign in to comment.