From 1dcaa6ba1c7c98b87f79d62dd4df4bf5e7299fc1 Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Wed, 20 Jan 2016 22:51:16 +0700 Subject: [PATCH] openstack: a failure to rename a volume is not fatal It will be cleaned up by nuke --stale-openstack Signed-off-by: Loic Dachary --- teuthology/openstack/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/openstack/__init__.py b/teuthology/openstack/__init__.py index 87a14499dd..1fef2698a0 100644 --- a/teuthology/openstack/__init__.py +++ b/teuthology/openstack/__init__.py @@ -167,7 +167,7 @@ class OpenStackInstance(object): misc.sh("openstack server delete --wait " + self['id'] + " || true") for volume in volumes: - misc.sh("openstack volume set --name REMOVE-ME " + volume) + misc.sh("openstack volume set --name REMOVE-ME " + volume + " || true") misc.sh("openstack volume delete " + volume + " || true") return True -- 2.39.5