Skip to content

Commit

Permalink
ci: wait longer for pod label to be deleted
Browse files Browse the repository at this point in the history
I've seen cases were the CI needs a few more seconds to delete and
object store. When logging in the runner, the object store is gone and
the timing matches too with the runner's logs (comparing with the
operator's logs).

Signed-off-by: Sébastien Han <seb@redhat.com>
(cherry picked from commit b4a36e9)
  • Loading branch information
leseb authored and mergify-bot committed Sep 28, 2021
1 parent 71a4a0e commit 7e3c03c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/framework/utils/env.go
Expand Up @@ -29,7 +29,7 @@ func TestEnvName() string {

// TestRetryNumber get the max retry. Example, for OpenShift it's 40.
func TestRetryNumber() int {
count := GetEnvVarWithDefault("RETRY_MAX", "30")
count := GetEnvVarWithDefault("RETRY_MAX", "45")
number, err := strconv.Atoi(count)
if err != nil {
panic(fmt.Errorf("Error when converting to numeric value %v", err))
Expand Down

0 comments on commit 7e3c03c

Please sign in to comment.