You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"unpin after TransientTransactionError error on commit": "Implement GODRIVER-3137",
57
+
58
+
// TODO(GODRIVER-3034): Drivers should unpin connections when ending a session
59
+
"unpin on successful abort": "Implement GODRIVER-3034",
60
+
"unpin after non-transient error on abort": "Implement GODRIVER-3034",
61
+
"unpin after TransientTransactionError error on abort": "Implement GODRIVER-3034",
62
+
"unpin when a new transaction is started": "Implement GODRIVER-3034",
63
+
"unpin when a non-transaction write operation uses a session": "Implement GODRIVER-3034",
64
+
"unpin when a non-transaction read operation uses a session": "Implement GODRIVER-3034",
65
+
66
+
// DRIVERS-2722: Setting "maxTimeMS" on a command that creates a cursor
67
+
// also limits the lifetime of the cursor. That may be surprising to
68
+
// users, so omit "maxTimeMS" from operations that return user-managed
69
+
// cursors.
70
+
"timeoutMS can be overridden for a find": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
71
+
"timeoutMS can be configured for an operation - find on collection": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
72
+
"timeoutMS can be configured for an operation - aggregate on collection": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
73
+
"timeoutMS can be configured for an operation - aggregate on database": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
74
+
"timeoutMS can be configured on a MongoClient - find on collection": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
75
+
"timeoutMS can be configured on a MongoClient - aggregate on collection": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
76
+
"timeoutMS can be configured on a MongoClient - aggregate on database": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
77
+
"operation is retried multiple times for non-zero timeoutMS - find on collection": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
78
+
"operation is retried multiple times for non-zero timeoutMS - aggregate on collection": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
79
+
"operation is retried multiple times for non-zero timeoutMS - aggregate on database": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
80
+
"timeoutMS applied to find command": "maxTimeMS is disabled on find and aggregate. See DRIVERS-2722.",
81
+
82
+
// DRIVERS-2953: This test requires that the driver sends a "getMore"
83
+
// with "maxTimeMS" set. However, "getMore" can only include "maxTimeMS"
84
+
// for tailable awaitData cursors. Including "maxTimeMS" on "getMore"
85
+
// for any other cursor type results in a server error:
86
+
//
87
+
// (BadValue) cannot set maxTimeMS on getMore command for a non-awaitData cursor
88
+
//
89
+
"Non-tailable cursor lifetime remaining timeoutMS applied to getMore if timeoutMode is unset": "maxTimeMS can't be set on a getMore. See DRIVERS-2953",
0 commit comments