[
https://issues.apache.org/jira/browse/LIBCLOUD-925?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Miguel Caballer closed LIBCLOUD-925.
------------------------------------
Resolution: Fixed
> Error in GCE driver in function _get_error
> ------------------------------------------
>
> Key: LIBCLOUD-925
> URL: https://issues.apache.org/jira/browse/LIBCLOUD-925
> Project: Libcloud
> Issue Type: Bug
> Reporter: Miguel Caballer
> Priority: Minor
> Labels: gce
>
> _get_error function assumes that the body['error'] value is a dict, but in
> some cases it contains an string (unicode).
> So it tries to do a err.get and it failts.
> I has to be something like that:
> {noformat}
> if 'code' in err:
> code = err.get('code')
> message = err.get('message')
> else:
> code = None
> if 'reason' in err:
> code = err.get('reason')
> message = body.get('error_description', err)
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)