From: Josh Durgin Date: Thu, 21 Feb 2013 01:04:58 +0000 (-0800) Subject: test: fix run-rbd-tests pool deletion X-Git-Tag: v0.59~144^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=94e5deebc64ad6b10eaee1ecc1d3ac6263fc5efd;p=ceph.git test: fix run-rbd-tests pool deletion Use the new safety check Signed-off-by: Josh Durgin --- diff --git a/src/test/run-rbd-tests b/src/test/run-rbd-tests index d3c8b9e98ca2..ddd1f50cdf6a 100755 --- a/src/test/run-rbd-tests +++ b/src/test/run-rbd-tests @@ -10,7 +10,7 @@ PATH="$CEPH_SRC:$PATH" recreate_pool() { POOL_NAME=$1 PG_NUM=100 - ceph osd pool delete $POOL_NAME + ceph osd pool delete $POOL_NAME $POOL_NAME --yes-i-really-really-mean-it ceph osd pool create $POOL_NAME $PG_NUM }