Skip to content

Commit 7a43dfe

Browse files
committed
sctest: decrease sampling rate for random BACKUPs
We are seeing more package timeouts in this test, so to speed up the test, we will take fewer random BACKUPs. Release note: None
1 parent 5aaab78 commit 7a43dfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/sql/schemachanger/sctest/backup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ var runAllBackups = flag.Bool(
107107
"if true, run all backups instead of a random subset",
108108
)
109109

110-
const skipRate = .5
110+
const skipRate = .6
111111

112112
func maybeRandomlySkip(t *testing.T) {
113113
if !*runAllBackups && rand.Float64() < skipRate {

0 commit comments

Comments
 (0)