Increase timeout for userland proxy starting
| ... | ... |
@@ -145,7 +145,7 @@ func (p *proxyCommand) Start() error {
|
| 145 | 145 |
select {
|
| 146 | 146 |
case err := <-errchan: |
| 147 | 147 |
return err |
| 148 |
- case <-time.After(1 * time.Second): |
|
| 148 |
+ case <-time.After(16 * time.Second): |
|
| 149 | 149 |
return fmt.Errorf("Timed out proxy starting the userland proxy")
|
| 150 | 150 |
} |
| 151 | 151 |
} |