Skip to content

Commit b6c50f9

Browse files
authored
GODRIVER-3801 Skip TestConvenientTransactions/slow_operation_in_callback_retries for sharded clusters. (#2322)
1 parent d010e78 commit b6c50f9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

mongo/with_transactions_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,9 @@ func TestConvenientTransactions(t *testing.T) {
523523
"expected transaction to fail within 500ms")
524524
})
525525
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+
}
526529
withTransactionTimeout = 2 * time.Second
527530

528531
coll := db.Collection("test")

0 commit comments

Comments
 (0)