Merge "Fix the missing args bug while lvm creates volume failed"

This commit is contained in:
Jenkins 2017-04-11 05:32:34 +00:00 committed by Gerrit Code Review
commit e4327a7d01

View File

@ -566,7 +566,8 @@ class LVM(executor.Executor):
LOG.error('Cmd :%s', err.cmd)
LOG.error('StdOut :%s', err.stdout)
LOG.error('StdErr :%s', err.stderr)
LOG.error('Current state: %s', self.get_all_volume_groups())
LOG.error('Current state: %s',
self.get_all_volume_groups(self._root_helper))
raise
@utils.retry(putils.ProcessExecutionError)