From 418919888b445047212ba89a044a7de5960aaedf Mon Sep 17 00:00:00 2001 From: irfan sharif Date: Tue, 4 Aug 2020 11:15:17 -0400 Subject: [PATCH] roachtest: reflake (skip) disk-stalled test for release-19.1 Fixes #52181. This test doesn't make use of all the `roachtest start` smartness to figure out what sub-command to use and instead constructs the raw start command by hand. Given our support policy, let's just bump the minimum version this test expects to run. This feels like another instance where https://github.com/cockroachdb/cockroach/issues/51897 would be nice to have. Release note: None --- pkg/cmd/roachtest/disk_stall.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/roachtest/disk_stall.go b/pkg/cmd/roachtest/disk_stall.go index 38d5558dacf0..2e151b42a196 100644 --- a/pkg/cmd/roachtest/disk_stall.go +++ b/pkg/cmd/roachtest/disk_stall.go @@ -34,7 +34,7 @@ func registerDiskStalledDetection(r *testRegistry) { affectsLogDir, affectsDataDir, ), Owner: OwnerKV, - MinVersion: "v19.1.0", + MinVersion: "v19.2.0", Cluster: makeClusterSpec(1), Run: func(ctx context.Context, t *test, c *cluster) { runDiskStalledDetection(ctx, t, c, affectsLogDir, affectsDataDir)