Skip to content

Commit 508cad5

Browse files
committed
MLE-24523 Debugging reverse proxy tests
Trying Copilot's suggestion
1 parent 2760447 commit 508cad5

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

Jenkinsfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,11 @@ pipeline {
175175
export PATH=$GRADLE_USER_HOME:$JAVA_HOME/bin:$PATH
176176
cd java-client-api
177177
// Ensure all modules can be built first.
178-
./gradlew clean build -x test
178+
// ./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+
// Temporarily running a single test to debug the reverse proxy server
182+
./gradlew -PtestUseReverseProxyServer=true runReverseProxyServer marklogic-client-api:test --tests ReadDocumentPageTest || true
182183
'''
183184
// Omitting this until MLE-24523 can be addressed
184185
// ./gradlew -PtestUseReverseProxyServer=true test-app:runReverseProxyServer marklogic-client-api-functionaltests:runFastFunctionalTests || true

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)