Skip to content

Commit

Permalink
increase timeout of DocsClientYamlTestSuiteIT
Browse files Browse the repository at this point in the history
increase timeout of DocsClientYamlTestSuiteIT to 35 minutes, temporary solution for issue #49753
  • Loading branch information
Hendrik Muhs authored Jan 17, 2020
1 parent bc5340a commit 394f09c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import com.carrotsearch.randomizedtesting.annotations.Name;
import com.carrotsearch.randomizedtesting.annotations.ParametersFactory;
import com.carrotsearch.randomizedtesting.annotations.TimeoutSuite;

import org.apache.http.HttpHost;
import org.apache.lucene.util.BytesRef;
import org.apache.lucene.util.TimeUnits;
Expand Down Expand Up @@ -57,7 +58,8 @@
import static org.elasticsearch.common.xcontent.ConstructingObjectParser.constructorArg;

//The default 20 minutes timeout isn't always enough, please do not increase further than 30 before analyzing what makes this suite so slow
@TimeoutSuite(millis = 30 * TimeUnits.MINUTE)
// gh#49753 increasing timeout to 35 minutes until this gets fixes properly
@TimeoutSuite(millis = 35 * TimeUnits.MINUTE)
public class DocsClientYamlTestSuiteIT extends ESClientYamlSuiteTestCase {

public DocsClientYamlTestSuiteIT(@Name("yaml") ClientYamlTestCandidate testCandidate) {
Expand Down

0 comments on commit 394f09c

Please sign in to comment.