Skip to content

Commit afc6490

Browse files
authored
Merge pull request #4130 from apostasie/el8-timeout
[CI]: increase test timeout for EL8
2 parents 546e476 + 5cf3f80 commit afc6490

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkg/testutil/nerdtest/utilities_linux.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ func RunSigProxyContainer(signal os.Signal, exitOnSignal bool, args []string, da
5757

5858
cmd := helpers.Command(args...)
5959
// NOTE: because of a test like TestStopWithStopSignal, we need to wait enough for nerdctl to terminate the container
60-
cmd.WithTimeout(20 * time.Second)
60+
// It looks like EL8 could be particularly slow (https://github.com/containerd/nerdctl/issues/4068)
61+
// Note that in normal circumstances, 10 seconds is plenty enough.
62+
cmd.WithTimeout(40 * time.Second)
6163
cmd.Background()
6264
EnsureContainerStarted(helpers, data.Identifier())
6365

0 commit comments

Comments
 (0)