mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Increase timeout for userland proxy starting
Fixes #8883 Signed-off-by: Alexandr Morozov <lk4d4@docker.com>
This commit is contained in:
parent
739d917d70
commit
72c55e8215
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue