We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5a19643 + cd07a0f commit a9c42c3Copy full SHA for a9c42c3
pkg/kv/kvnemesis/kvnemesis_test.go
@@ -514,6 +514,11 @@ func TestKVNemesisMultiNode_Partition_Safety(t *testing.T) {
514
testGeneratorConfig: func(cfg *GeneratorConfig) {
515
cfg.Ops.Fault.AddNetworkPartition = 1
516
cfg.Ops.Fault.RemoveNetworkPartition = 1
517
+ // This is the only operation that executes via SQL. As such, we suspect
518
+ // context cancellations are not always respected, resulting in the test
519
+ // hanging. The current suspect is lib/pq. See #160293.
520
+ // TODO(mira): Consider toggling global reads by editing the span config.
521
+ cfg.Ops.ChangeZone.ToggleGlobalReads = 0
522
},
523
})
524
}
0 commit comments