From: Mathieu Gagné Date: Thu, 16 May 2013 00:54:27 +0000 (-0400) Subject: solidfire: Make sure src_uuid is passed correctly X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=306de99f4506029990ed891c8ac0b2b73832c805;p=openstack-build%2Fcinder-build.git solidfire: Make sure src_uuid is passed correctly src_uuid wasn't passed correctly as an attribute because the variable was wrongly quoted and couldn't be interpolated. Fixes: bug #1180611 Change-Id: If22dda162a28138cf447ce12bbe061f623e6d076 --- diff --git a/cinder/volume/drivers/solidfire.py b/cinder/volume/drivers/solidfire.py index 602da4d8a..daab58a6a 100644 --- a/cinder/volume/drivers/solidfire.py +++ b/cinder/volume/drivers/solidfire.py @@ -316,7 +316,7 @@ class SolidFire(SanISCSIDriver): attributes = {'uuid': v_ref['id'], 'is_clone': 'True', - 'src_uuid': 'src_uuid'} + 'src_uuid': src_uuid} if qos: for k, v in qos.items():