e2e: use longer wait in template update triggers to avoid flake. (#13271)

This commit is contained in:
James Rasell 2022-06-07 14:49:03 +02:00 committed by GitHub
parent f5e78a3791
commit c3c10d8c10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -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 {