Merge "Always set ignoreskipactivation on snapshot creation"

This commit is contained in:
Zuul 2017-11-21 12:48:05 +00:00 committed by Gerrit Code Review
commit 55aab946b5
1 changed files with 2 additions and 1 deletions

View File

@ -591,7 +591,8 @@ class LVM(executor.Executor):
LOG.error("Trying to create snapshot by non-existent LV: %s",
source_lv_name)
raise exception.VolumeDeviceNotFound(device=source_lv_name)
cmd = LVM.LVM_CMD_PREFIX + ['lvcreate', '--name', name, '--snapshot',
cmd = LVM.LVM_CMD_PREFIX + ['lvcreate', '--name', name,
'-k', 'y', '--snapshot',
'%s/%s' % (self.vg_name, source_lv_name)]
if lv_type != 'thin':
size = source_lvref['size']