The SF API initially didn't supply the in prefix so we
formed it manually in the OpenStack driver.
This has been fixed in the API so we dropped the manual
build of the prefix in volume create. Unfortunatly missed
the same case needed in create-from-snapshot.
Going forward we're adding running integration tests against
SF to catch this sort of thing.
Change-Id: I7107537d586f0a7c457dcbabfc90e1bc081d28d2
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 = {}