Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mantle/podman.go: bump retry delay in podmanWorkflow test #3953

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mantle/kola/tests/podman/podman.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,12 @@ func podmanWorkflow(c cluster.TestCluster) {
return err
}
if !bytes.Contains(b, []byte("TEST PAGE")) {
return fmt.Errorf("nginx pod is not running %s", b)
return fmt.Errorf("Fedora container is not running %s", b)
}
return nil
}

if err := util.Retry(6, 5*time.Second, podIsRunning); err != nil {
if err := util.Retry(6, 10*time.Second, podIsRunning); err != nil {
c.Fatal("Pod is not running")
}
})
Expand Down
Loading