From 2d211b66994240b2047d78b3d084d52abeac72a2 Mon Sep 17 00:00:00 2001 From: John Griffith Date: Thu, 6 Sep 2012 23:50:49 -0600 Subject: [PATCH] Update SolidFire driver to reflect IQN changes Prior to release the SolidFire device returned only a partial iqn string in it's api call. With the GA release, this was modified to return the entire iqn string, so just drop the prefix we were using in beta. Change-Id: I7fa9d1ec6e2639149375a1115198eee90c527ef1 --- cinder/volume/solidfire.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/volume/solidfire.py b/cinder/volume/solidfire.py index 132e924a5..70fbcab87 100644 --- a/cinder/volume/solidfire.py +++ b/cinder/volume/solidfire.py @@ -228,7 +228,7 @@ class SolidFire(SanISCSIDriver): iqn = None for v in volume_list: if v['volumeID'] == volume_id: - iqn = 'iqn.2010-01.com.solidfire:' + v['iqn'] + iqn = v['iqn'] break model_update = {} -- 2.45.2