Skip to content

Commit 69be3f7

Browse files
committed
Not running 2-way SSL test against reverse proxy
1 parent daec921 commit 69be3f7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

marklogic-client-api/src/test/java/com/marklogic/client/test/TwoWaySSLTest.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ public class TwoWaySSLTest {
5555

5656
@BeforeAll
5757
public static void setup() throws Exception {
58+
if (Common.USE_REVERSE_PROXY_SERVER) {
59+
return;
60+
}
5861
// Create a client using the java-unittest app server - which requires SSL via RequiresSSLExtension - and that
5962
// talks to the Security database.
6063
securityClient = Common.newClientBuilder()
@@ -77,6 +80,9 @@ public static void setup() throws Exception {
7780

7881
@AfterAll
7982
public static void teardown() {
83+
if (Common.USE_REVERSE_PROXY_SERVER) {
84+
return;
85+
}
8086
removeTwoWaySSLConfig();
8187
deleteCertificateAuthority();
8288
}

0 commit comments

Comments
 (0)