mirror of https://github.com/containers/podman.git
CI: rm system test: bump grace period
The "rm on stopping containers" test is flaking under high load, probably because I bumped up two timeouts in the healthcheck container that it relies on. Bump up this test's timeout as well. Signed-off-by: Ed Santiago <santiago@redhat.com>
This commit is contained in:
parent
3396dabdf3
commit
e3af5a38d3
|
@ -150,7 +150,7 @@ function __run_healthcheck_container() {
|
||||||
# We have no way to guarantee that we see 'stopping', but at a very
|
# We have no way to guarantee that we see 'stopping', but at a very
|
||||||
# minimum we need to check at least one rm failure
|
# minimum we need to check at least one rm failure
|
||||||
local rm_failures=0
|
local rm_failures=0
|
||||||
for i in {1..10}; do
|
for i in {1..20}; do
|
||||||
run_podman '?' rm $cname
|
run_podman '?' rm $cname
|
||||||
if [[ $status -eq 0 ]]; then
|
if [[ $status -eq 0 ]]; then
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in New Issue