From: Mykola Golub Date: Mon, 30 Oct 2017 06:57:29 +0000 (+0200) Subject: qa/workunits/rbd: unnecessary sleep after failed remove X-Git-Tag: v13.0.1~319^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=cb90069604d42c70364f39062ce7926be45dd85d;p=ceph.git qa/workunits/rbd: unnecessary sleep after failed remove Signed-off-by: Mykola Golub --- diff --git a/qa/workunits/rbd/rbd_mirror_helpers.sh b/qa/workunits/rbd/rbd_mirror_helpers.sh index 1e086eee3229..4e4c5640c712 100755 --- a/qa/workunits/rbd/rbd_mirror_helpers.sh +++ b/qa/workunits/rbd/rbd_mirror_helpers.sh @@ -630,9 +630,9 @@ remove_image_retry() local pool=$2 local image=$3 - for s in 1 2 4 8 16 32; do - remove_image ${cluster} ${pool} ${image} && return 0 + for s in 0 1 2 4 8 16 32; do sleep ${s} + remove_image ${cluster} ${pool} ${image} && return 0 done return 1 }