e2e: use longer wait in template update triggers to avoid flake. (#13271)
This commit is contained in:
parent
f5e78a3791
commit
c3c10d8c10
|
@ -163,7 +163,10 @@ job: {{ env "NOMAD_JOB_NAME" }}
|
|||
"upstream": "running",
|
||||
"exec_downstream": "running",
|
||||
"docker_downstream": "running"}
|
||||
f.NoError(waitForAllocStatusByGroup(jobID, ns, expected, nil))
|
||||
f.NoError(waitForAllocStatusByGroup(jobID, ns, expected, &e2eutil.WaitConfig{
|
||||
Interval: time.Millisecond * 300,
|
||||
Retries: 100,
|
||||
}))
|
||||
|
||||
// verify we've rendered the templates
|
||||
for allocID := range downstreams {
|
||||
|
|
Loading…
Reference in New Issue