Merge pull request #10488 from priyawadhwa/start-stop-delete

Reduce time limit on TestStartStop to fix occasional KVM_containerd timeout
pull/10454/head
priyawadhwa 2021-02-16 14:50:03 -08:00 committed by GitHub
commit eaaa51c6ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ func TestStartStop(t *testing.T) {
t.Run(tc.name, func(t *testing.T) {
MaybeParallel(t)
profile := UniqueProfileName(tc.name)
ctx, cancel := context.WithTimeout(context.Background(), Minutes(40))
ctx, cancel := context.WithTimeout(context.Background(), Minutes(30))
defer Cleanup(t, profile, cancel)
type validateStartStopFunc func(context.Context, *testing.T, string, string, string, []string)
if !strings.Contains(tc.name, "docker") && NoneDriver() {