Skip to content

Commit 5a3c9dd

Browse files
committed
roachtest: increase Cleanup timeout for disk stall test
In this test, cleanup involves running `sudo apt-get install -y snapd`, which can take a while. Increase the timeout to 5 minutes. Informs: #157978 Release note: None
1 parent 7e8456c commit 5a3c9dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/roachtest/tests/disk_stall.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ func runDiskStalledDetection(
254254
// the disk stalled will prevent artifact collection, making debugging
255255
// difficult.
256256
defer func() {
257-
ctx, cancel := context.WithTimeout(context.Background(), time.Minute)
257+
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Minute)
258258
defer cancel()
259259
s.Cleanup(ctx)
260260
}()

0 commit comments

Comments
 (0)