Skip to content

Commit

Permalink
[UNDERTOW-1523][UNDERTOW-1929] Temporarily disable ServletOutputStrea…
Browse files Browse the repository at this point in the history
…mSSLTestCase async methods on Windows Proxy AJP mode
  • Loading branch information
fl4via committed Aug 4, 2021
1 parent 2dc674a commit d3e0f9f
Showing 1 changed file with 13 additions and 0 deletions.
Expand Up @@ -18,6 +18,7 @@
import java.io.IOException;

import org.junit.AfterClass;
import org.junit.Assume;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;

Expand Down Expand Up @@ -49,4 +50,16 @@ protected TestHttpClient createClient() {
protected String getBaseUrl() {
return DefaultServer.getDefaultServerSSLAddress();
}

@Override public void testAsyncServletOutputStreamWithPreableOffIOThread() {
// FIXME UNDERTOW-1929 read timeout occurs always here on Windows + Proxy AJP
Assume.assumeFalse(System.getProperty("os.name").startsWith("windows") && DefaultServer.isProxy() && DefaultServer.isAjp());
super.testAsyncServletOutputStreamWithPreableOffIOThread();
}

@Override public void testAsyncServletOutputStreamOffIOThread() {
// FIXME UNDERTOW-1929 read timeout occurs always here on Windows + Proxy AJP
Assume.assumeFalse(System.getProperty("os.name").startsWith("windows") && DefaultServer.isProxy() && DefaultServer.isAjp());
super.testAsyncServletOutputStreamOffIOThread();
}
}

0 comments on commit d3e0f9f

Please sign in to comment.