Skip to content

Commit a129d7a

Browse files
committed
MLE-24523 Debugging reverse proxy tests
1 parent 2760447 commit a129d7a

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

Jenkinsfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,11 @@ pipeline {
178178
./gradlew clean build -x test
179179
180180
// Run a sufficient number of tests to verify the PR.
181-
./gradlew cleanTest marklogic-client-api:test || true
181+
./gradlew cleanTest marklogic-client-api:test || true
182+
183+
// Run tests with reverse proxy server
184+
./gradlew -PtestUseReverseProxyServer=true runReverseProxyServer marklogic-client-api-functionaltests:runFastFunctionalTests || true
182185
'''
183-
// Omitting this until MLE-24523 can be addressed
184-
// ./gradlew -PtestUseReverseProxyServer=true test-app:runReverseProxyServer marklogic-client-api-functionaltests:runFastFunctionalTests || true
185186
junit '**/build/**/TEST*.xml'
186187
}
187188
post {

docker-compose.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@ services:
1818
- ${MARKLOGIC_LOGS_VOLUME}:/var/opt/MarkLogic/Logs
1919
ports:
2020
- "8000-8002:8000-8002"
21-
- "8010-8014:8010-8014"
22-
- "8022:8022"
23-
- "8054-8059:8054-8059"
24-
- "8093:8093"
21+
- "8010-8015:8010-8015"
2522

2623
volumes:
2724
marklogicLogs:

marklogic-client-api-functionaltests/src/test/java/com/marklogic/client/functionaltest/BulkIOCallersFnTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class BulkIOCallersFnTest extends BasicJavaClientREST {
4242
private static String host = null;
4343

4444
private static int modulesPort = 8000;
45-
private static int restTestport = 8093;
45+
private static int restTestport = 8015;
4646
private static String restServerName = "TestDynamicIngest";
4747

4848
private static SecurityContext secContext = null;

0 commit comments

Comments
 (0)