From a7528443db4880bb90780a1210b43441599f3273 Mon Sep 17 00:00:00 2001 From: zhangdaolong Date: Wed, 12 Jul 2017 15:42:51 +0800 Subject: [PATCH] Fix wrong log parm. Change-Id: I5204bf3bb893964a7b97c84a21e2e757722701c0 --- nova/virt/libvirt/driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/virt/libvirt/driver.py b/nova/virt/libvirt/driver.py index 2074a875e2be..2f4656543b63 100644 --- a/nova/virt/libvirt/driver.py +++ b/nova/virt/libvirt/driver.py @@ -1297,7 +1297,7 @@ class LibvirtDriver(driver.ComputeDriver): except Exception as exc: LOG.exception("Failure rebasing volume %(new_path)s on " - "%(new_path)s.", {'new_path': conf.source_path, + "%(old_path)s.", {'new_path': conf.source_path, 'old_path': disk_path}) raise exception.VolumeRebaseFailed(reason=six.text_type(exc))