@@ -71,7 +71,7 @@ public static void applyCustomizations(final TestDef def) {
71
71
def .skipNoncompliantReactive ("No good way to fulfill tryNext() requirement with a Publisher<T>" )
72
72
.test ("client-side-operation-timeout" , "apply remaining timeoutMS if less than maxAwaitTimeMS" );
73
73
74
- def .retry ( "timeoutMS is very short " )
74
+ def .skipJira ( "https://jira.mongodb.org/browse/JAVA-5839 " )
75
75
.test ("client-side-operation-timeout" , "timeoutMS applied to entire download, not individual parts" );
76
76
77
77
// TODO-JAVA-5712
@@ -93,6 +93,10 @@ public static void applyCustomizations(final TestDef def) {
93
93
+ "response doesn't contain it." )
94
94
.file ("command-logging-and-monitoring" , "pre-42-server-connection-id" );
95
95
96
+ def .skipNoncompliant ("The driver doesn't reduce the batchSize for the getMore" )
97
+ .test ("command-logging-and-monitoring" ,
98
+ "A successful find event with a getmore and the server kills the cursor (<= 4.4)" );
99
+
96
100
// connection-monitoring-and-pooling
97
101
98
102
// TODO-JAVA-5711 reason, jira
@@ -271,6 +275,11 @@ public static void applyCustomizations(final TestDef def) {
271
275
+ "server versions." )
272
276
.when (() -> serverVersionLessThan (4 , 4 ))
273
277
.test ("unified-test-format/tests/valid-pass" , "poc-retryable-writes" , "InsertOne fails after multiple retryable writeConcernErrors" );
278
+
279
+ def .skipNoncompliant ("The driver doesn't reduce the batchSize for the getMore" )
280
+ .test ("unified-test-format/tests/valid-pass" ,
281
+ "A successful find event with a getmore and the server kills the cursor (<= 4.4)" );
282
+
274
283
def .skipJira ("https://jira.mongodb.org/browse/JAVA-5389" )
275
284
.file ("unified-test-format/tests/valid-pass" , "expectedEventsForClient-topologyDescriptionChangedEvent" );
276
285
def .skipJira ("https://jira.mongodb.org/browse/JAVA-4862" )
0 commit comments