Skip to content
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