In the SolidFire create-cache account routine we broke the response
check and are trying to use the entire api response as if it were an
account object.
This patch just pulls the actual account object out of the response
instead of using the entire API response.
Change-Id: Ief2d9ae494475f5ba3688c521e11d51a244b5c28
Closes-Bug: #
1486744
sf_account = self._issue_api_request(
'GetAccountByID',
- {'accountID': self.template_account_id})
+ {'accountID': self.template_account_id})['result']['account']
template_vol = self._do_volume_create(sf_account, params)
tvol = {}