mirror of https://github.com/status-im/consul.git
Increase timeout for `WaitForResult`
This commit is contained in:
parent
860cdb9c96
commit
e1d111a43d
|
@ -10,10 +10,10 @@ type testFn func() (bool, error)
|
|||
type errorFn func(error)
|
||||
|
||||
func WaitForResult(test testFn, error errorFn) {
|
||||
retries := 100 // 5 seconds timeout
|
||||
retries := 100
|
||||
|
||||
for retries > 0 {
|
||||
time.Sleep(50 * time.Millisecond)
|
||||
time.Sleep(100 * time.Millisecond)
|
||||
retries--
|
||||
|
||||
success, err := test()
|
||||
|
|
Loading…
Reference in New Issue