Merge "Consider volume in 'reserved' status as detachment in progress"

This commit is contained in:
Zuul 2018-11-20 19:24:46 +00:00 committed by Gerrit Code Review
commit aabf0d5e16
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ class CinderClientPlugin(client_plugin.ClientPlugin):
if server_id and server_id not in server_ids:
return True
if vol.status in ('in-use', 'detaching'):
if vol.status in ('in-use', 'detaching', 'reserved'):
LOG.debug('%s - volume still in use', vol_id)
return False