We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d010e78 commit b6c50f9Copy full SHA for b6c50f9
mongo/with_transactions_test.go
@@ -523,6 +523,9 @@ func TestConvenientTransactions(t *testing.T) {
523
"expected transaction to fail within 500ms")
524
})
525
t.Run("slow operation in callback retries", func(t *testing.T) {
526
+ if os.Getenv("TOPOLOGY") == "sharded_cluster" {
527
+ t.Skip("skipping on sharded clusters due to SERVER-96344; see GODRIVER-3801")
528
+ }
529
withTransactionTimeout = 2 * time.Second
530
531
coll := db.Collection("test")
0 commit comments