From 56d99843afbba92d0125be76f2f873f1a3333312 Mon Sep 17 00:00:00 2001 From: Ross Lawley Date: Wed, 30 Apr 2025 15:10:49 +0100 Subject: [PATCH] Added extra test to ignore for reactive streams JAVA-5720 --- .../com/mongodb/client/unified/UnifiedTestModifications.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/driver-sync/src/test/functional/com/mongodb/client/unified/UnifiedTestModifications.java b/driver-sync/src/test/functional/com/mongodb/client/unified/UnifiedTestModifications.java index b79b62492fe..a6933382fdb 100644 --- a/driver-sync/src/test/functional/com/mongodb/client/unified/UnifiedTestModifications.java +++ b/driver-sync/src/test/functional/com/mongodb/client/unified/UnifiedTestModifications.java @@ -72,6 +72,10 @@ public static void applyCustomizations(final TestDef def) { .test("client-side-operations-timeout", "timeoutMS behaves correctly for tailable awaitData cursors", "apply remaining timeoutMS if less than maxAwaitTimeMS"); + def.skipNoncompliantReactive("No good way to fulfill tryNext() requirement with a Publisher") + .test("client-side-operations-timeout", "timeoutMS behaves correctly for tailable awaitData cursors", + "apply maxAwaitTimeMS if less than remaining timeout"); + def.skipJira("https://jira.mongodb.org/browse/JAVA-5839") .test("client-side-operations-timeout", "timeoutMS behaves correctly for GridFS download operations", "timeoutMS applied to entire download, not individual parts");