Skip to content

Commit 5f4fe6e

Browse files
committed
roachtest: set 30m timeout for all disk stall roachtests
This commit sets a new 30m timeout for all disk stall roachtests. Previously, the FUSE filesystem variants had no timeout and inherited the default 10h timeout. The other variants had a 20m timeout, which has been observed to be too short due to upreplication latency. Informs cockroachdb#98904. Informs cockroachdb#98886. Epic: None Release note: None
1 parent 85c6e38 commit 5f4fe6e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/cmd/roachtest/tests/disk_stall.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func registerDiskStalledDetection(r registry.Registry) {
5151
Name: fmt.Sprintf("disk-stalled/%s", name),
5252
Owner: registry.OwnerStorage,
5353
Cluster: r.MakeClusterSpec(4, spec.ReuseNone()),
54-
Timeout: 20 * time.Minute,
54+
Timeout: 30 * time.Minute,
5555
Run: func(ctx context.Context, t test.Test, c cluster.Cluster) {
5656
runDiskStalledDetection(ctx, t, c, makeStaller(t, c), true /* doStall */)
5757
},
@@ -77,6 +77,7 @@ func registerDiskStalledDetection(r registry.Registry) {
7777
),
7878
Owner: registry.OwnerStorage,
7979
Cluster: r.MakeClusterSpec(4, spec.ReuseNone()),
80+
Timeout: 30 * time.Minute,
8081
Run: func(ctx context.Context, t test.Test, c cluster.Cluster) {
8182
runDiskStalledDetection(ctx, t, c, &fuseDiskStaller{
8283
t: t,

0 commit comments

Comments
 (0)