Refactored test
This commit is contained in:
parent
3d5e02b3d7
commit
c28702cb2d
|
@ -39,7 +39,12 @@ func TestTaskRunner_BatchRestartCounter(t *testing.T) {
|
||||||
attempts := 2
|
attempts := 2
|
||||||
interval := 1 * time.Second
|
interval := 1 * time.Second
|
||||||
delay := 1 * time.Second
|
delay := 1 * time.Second
|
||||||
rt := newRestartTracker(structs.JobTypeBatch, &structs.RestartPolicy{Attempts: attempts, Interval: interval, Delay: delay})
|
rt := newRestartTracker(structs.JobTypeBatch,
|
||||||
|
&structs.RestartPolicy{Attempts: attempts,
|
||||||
|
Interval: interval,
|
||||||
|
Delay: delay,
|
||||||
|
},
|
||||||
|
)
|
||||||
for i := 0; i < attempts; i++ {
|
for i := 0; i < attempts; i++ {
|
||||||
shouldRestart, when := rt.nextRestart()
|
shouldRestart, when := rt.nextRestart()
|
||||||
if !shouldRestart {
|
if !shouldRestart {
|
||||||
|
|
Loading…
Reference in a new issue