Skip to content

Commit c3679e9

Browse files
committed
Disabling test when run with reverse proxy.
1 parent 59279f0 commit c3679e9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

marklogic-client-api/src/test/java/com/marklogic/client/test/rows/RowManagerTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -525,6 +525,11 @@ public void testSQLNoResults() {
525525
@Test
526526
@ExtendWith(RequiresML11.class)
527527
public void testErrorWhileStreamingRows() {
528+
if (Common.USE_REVERSE_PROXY_SERVER) {
529+
// Different kind of error is thrown when using reverse proxy.
530+
return;
531+
}
532+
528533
final String validQueryThatEventuallyThrowsAnError = "select case " +
529534
"when lastName = 'Byron' then fn_error(fn_qname('', 'SQL-TABLENOTFOUND'), 'Internal Server Error') end, " +
530535
"opticUnitTest.musician.* from (select * from opticUnitTest.musician order by lastName)";

0 commit comments

Comments
 (0)