In the update cache volume routine of the SolidFire driver
we're unintentionally re-initializing the params variable
when assigning volID as opposed to just appending another key
to it.
This patch fixes that.
Change-Id: I213776ee6aef6e5dee2807c19b7eea05af23d6c0
Closes-Bug: #
1454425
else:
# Bummer, it's been updated, delete it
params = {'accountID': sfaccount['accountID']}
- params = {'volumeID': sf_vol['volumeID']}
+ params['volumeID'] = sf_vol['volumeID']
data = self._issue_api_request('DeleteVolume', params)
if 'result' not in data:
msg = _("Failed to delete SolidFire Image-Volume: %s") % data