Temporarily increase Netty4RestIT timeout
Recently, we experience timeouts on our Windows build slaves for Netty4RestIT. Until we have figured out what's going on, we increase this test suite's timeout temporarily to ensure this timeout does not mask other problems.
This commit is contained in:
parent
d7d3b1a874
commit
94bc489275
|
@ -22,12 +22,16 @@ package org.elasticsearch.http.netty4;
|
|||
import com.carrotsearch.randomizedtesting.annotations.Name;
|
||||
import com.carrotsearch.randomizedtesting.annotations.ParametersFactory;
|
||||
|
||||
import com.carrotsearch.randomizedtesting.annotations.TimeoutSuite;
|
||||
import org.apache.lucene.util.TimeUnits;
|
||||
import org.elasticsearch.test.rest.ESClientYamlSuiteTestCase;
|
||||
import org.elasticsearch.test.rest.RestTestCandidate;
|
||||
import org.elasticsearch.test.rest.parser.RestTestParseException;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
//TODO: This is a *temporary* workaround to ensure a timeout does not mask other problems
|
||||
@TimeoutSuite(millis = 30 * TimeUnits.MINUTE)
|
||||
public class Netty4RestIT extends ESClientYamlSuiteTestCase {
|
||||
|
||||
public Netty4RestIT(@Name("yaml") RestTestCandidate testCandidate) {
|
||||
|
@ -39,4 +43,4 @@ public class Netty4RestIT extends ESClientYamlSuiteTestCase {
|
|||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue