1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #36257 from arm64b/fix-inspect-network-timeout

Fix timeout issue of `InspectNetwork` on AArch64
This commit is contained in:
Akihiro Suda 2018-02-11 20:50:08 +09:00 committed by GitHub
commit 178ebca0b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,7 +47,7 @@ func TestInspectNetwork(t *testing.T) {
require.NoError(t, err)
pollSettings := func(config *poll.Settings) {
if runtime.GOARCH == "arm" {
if runtime.GOARCH == "arm64" || runtime.GOARCH == "arm" {
config.Timeout = 30 * time.Second
config.Delay = 100 * time.Millisecond
}