Skip to content

Commit

Permalink
Fix wording and add comment on unified spec test skips.
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewdale committed Apr 11, 2024
1 parent 9c4a0cb commit 832e502
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions mongo/integration/unified/unified_spec_runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,17 @@ var (
"listSearchIndexes ignores read and write concern": "Sync GODRIVER-3074, but skip testing bug GODRIVER-3043",
"updateSearchIndex ignores the read and write concern": "Sync GODRIVER-3074, but skip testing bug GODRIVER-3043",

"timeoutMS can be overridden for a find": "CSOT is disabled on find and aggregate. See DRIVERS-2722.",
"timeoutMS can be configured for an operation - find on collection": "CSOT is disabled on find and aggregate. See DRIVERS-2722.",
"timeoutMS can be configured for an operation - aggregate on collection": "CSOT is disabled on find and aggregate. See DRIVERS-2722.",
"timeoutMS can be configured for an operation - aggregate on database": "CSOT is disabled on find and aggregate. See DRIVERS-2722.",
"operation is retried multiple times for non-zero timeoutMS - find on collection": "CSOT is disabled on find and aggregate. See DRIVERS-2722.",
"operation is retried multiple times for non-zero timeoutMS - aggregate on collection": "CSOT is disabled on find and aggregate. See DRIVERS-2722.",
"operation is retried multiple times for non-zero timeoutMS - aggregate on database": "CSOT is disabled on find and aggregate. See DRIVERS-2722.",
// DRIVERS-2722: Setting "maxTimeMS" on a command that creates a cursor
// also limits the lifetime of the cursor. That may be surprising to
// users, so omit "maxTimeMS" from operations that return user-managed
// cursors.
"timeoutMS can be overridden for a find": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
"timeoutMS can be configured for an operation - find on collection": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
"timeoutMS can be configured for an operation - aggregate on collection": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
"timeoutMS can be configured for an operation - aggregate on database": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
"operation is retried multiple times for non-zero timeoutMS - find on collection": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
"operation is retried multiple times for non-zero timeoutMS - aggregate on collection": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
"operation is retried multiple times for non-zero timeoutMS - aggregate on database": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
}

logMessageValidatorTimeout = 10 * time.Millisecond
Expand Down

0 comments on commit 832e502

Please sign in to comment.