Merge pull request #9260 from LK4D4/increase_proxy_timeout

Increase timeout for userland proxy starting
Upstream-commit: 4acdb7ddc7f10cd707d02ca88317056e988b2abb
Component: engine
This commit is contained in:
Michael Crosby
2014-11-20 14:20:31 -08:00

View File

@ -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")
}
}