From d52cbb4b13967956f5ab6a373fe6cbbe24230c1f Mon Sep 17 00:00:00 2001 From: Rob Rudin Date: Mon, 6 Oct 2025 15:56:18 -0400 Subject: [PATCH] MLE-24579 Updated disabled test comment --- .../marklogic/client/test/datamovement/RowBatcherTest.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/marklogic-client-api/src/test/java/com/marklogic/client/test/datamovement/RowBatcherTest.java b/marklogic-client-api/src/test/java/com/marklogic/client/test/datamovement/RowBatcherTest.java index 8ae2fd3e2..5caa9ba2a 100644 --- a/marklogic-client-api/src/test/java/com/marklogic/client/test/datamovement/RowBatcherTest.java +++ b/marklogic-client-api/src/test/java/com/marklogic/client/test/datamovement/RowBatcherTest.java @@ -40,7 +40,8 @@ import static org.junit.jupiter.api.Assertions.*; -public class RowBatcherTest { +class RowBatcherTest { + private final static String TEST_DIR = "/test/rowbatch/unit/"; private final static String TEST_COLLECTION = TEST_DIR+"codes"; private final static String TABLE_NS_URI = "http://marklogic.com/table"; @@ -191,7 +192,8 @@ public void testJsonDocs1Thread() throws Exception { } @Test - @Disabled("A query returning no rows is now throwing an IOException on 12 nightly, so disabling temporarily.") + @Disabled("Disabled due to https://progresssoftware.atlassian.net/browse/MLE-24579 , which causes the server to restart, " + + "which can cause many other tests to fail.") void noRowsReturned() { RowBatcher rowBatcher = jsonBatcher(1); RowManager rowMgr = rowBatcher.getRowManager();