Merge "Fixes creation of mirrored volumes due to wrong type"

This commit is contained in:
Zuul 2017-12-16 02:30:28 +00:00 committed by Gerrit Code Review
commit 486a765075
1 changed files with 1 additions and 1 deletions

View File

@ -549,7 +549,7 @@ class LVM(executor.Executor):
'-L', size_str]
if mirror_count > 0:
cmd.extend(['-m', mirror_count, '--nosync',
cmd.extend(['--type=mirror', '-m', mirror_count, '--nosync',
'--mirrorlog', 'mirrored'])
terras = int(size_str[:-1]) / 1024.0
if terras >= 1.5: