瀏覽代碼

Merge pull request #9260 from LK4D4/increase_proxy_timeout

Increase timeout for userland proxy starting
Michael Crosby 10 年之前
父節點
當前提交
4acdb7ddc7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      daemon/networkdriver/portmapper/proxy.go

+ 1 - 1
daemon/networkdriver/portmapper/proxy.go

@@ -145,7 +145,7 @@ func (p *proxyCommand) Start() error {
 	select {
 	case err := <-errchan:
 		return err
-	case <-time.After(1 * time.Second):
+	case <-time.After(16 * time.Second):
 		return fmt.Errorf("Timed out proxy starting the userland proxy")
 	}
 }