From 306de99f4506029990ed891c8ac0b2b73832c805 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mathieu=20Gagne=CC=81?= Date: Wed, 15 May 2013 20:54:27 -0400 Subject: [PATCH] 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 --- cinder/volume/drivers/solidfire.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(): -- 2.45.2