Be more lenient on slower build machines
This commit is contained in:
parent
47750c4fbc
commit
c6f83a579d
|
@ -41,8 +41,8 @@ import org.junit.rules.ExternalResource;
|
|||
|
||||
public abstract class AbstractServerTestBase {
|
||||
|
||||
public static final Timeout TIMEOUT = Timeout.ofSeconds(30);
|
||||
public static final Timeout LONG_TIMEOUT = Timeout.ofSeconds(60);
|
||||
public static final Timeout TIMEOUT = Timeout.ofMinutes(1);
|
||||
public static final Timeout LONG_TIMEOUT = Timeout.ofMinutes(3);
|
||||
|
||||
protected final URIScheme scheme;
|
||||
|
||||
|
|
|
@ -92,7 +92,7 @@ public class TestHttpMinimalReactive extends AbstractHttpReactiveFundamentalsTes
|
|||
H2Config.DEFAULT,
|
||||
Http1Config.DEFAULT,
|
||||
IOReactorConfig.custom()
|
||||
.setSoTimeout(TIMEOUT)
|
||||
.setSoTimeout(LONG_TIMEOUT)
|
||||
.build(),
|
||||
PoolingAsyncClientConnectionManagerBuilder.create()
|
||||
.setTlsStrategy(new DefaultClientTlsStrategy(SSLTestContexts.createClientSSLContext()))
|
||||
|
|
|
@ -56,8 +56,8 @@ import org.junit.rules.ExternalResource;
|
|||
*/
|
||||
public abstract class LocalServerTestBase {
|
||||
|
||||
public static final Timeout TIMEOUT = Timeout.ofSeconds(30);
|
||||
public static final Timeout LONG_TIMEOUT = Timeout.ofSeconds(60);
|
||||
public static final Timeout TIMEOUT = Timeout.ofMinutes(1);
|
||||
public static final Timeout LONG_TIMEOUT = Timeout.ofMinutes(3);
|
||||
|
||||
public LocalServerTestBase(final URIScheme scheme) {
|
||||
this.scheme = scheme;
|
||||
|
|
Loading…
Reference in New Issue