Merge pull request #484 from docker/slow_windows_tests

Slightly update timeout, failing on windows nodes
This commit is contained in:
Chris Crone 2020-08-14 13:35:47 +02:00 коммит произвёл GitHub
Родитель c8dc0f1cf3 a86854effd
Коммит af36429cc5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -675,5 +675,5 @@ func waitForStatus(t *testing.T, c *E2eCLI, containerID string, status string) {
return poll.Continue("Status %s != %s (expected) for container %s", containerInspect.Status, status, containerID)
}
poll.WaitOn(t, checkStopped, poll.WithDelay(5*time.Second), poll.WithTimeout(60*time.Second))
poll.WaitOn(t, checkStopped, poll.WithDelay(5*time.Second), poll.WithTimeout(90*time.Second))
}