test: retry a bit more often
This commit is contained in:
parent
6e7cf8c07e
commit
98ac791577
|
@ -130,7 +130,8 @@ func (a *TestAgent) Start() *TestAgent {
|
|||
a.Agent = agent
|
||||
a.Agent.LogOutput = a.LogOutput
|
||||
a.Agent.LogWriter = a.LogWriter
|
||||
retry.RunWith(retry.ThreeTimes(), &panicFailer{}, func(r *retry.R) {
|
||||
tenTimes := &retry.Counter{Count: 10, Wait: 100 * time.Millisecond}
|
||||
retry.RunWith(tenTimes, &panicFailer{}, func(r *retry.R) {
|
||||
err := a.Agent.Start()
|
||||
if err == nil {
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue