You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by "Vincent Planchenault (JIRA)" <ji...@apache.org> on 2018/03/19 14:03:00 UTC

[jira] [Created] (LIBCLOUD-989) Small bug in common/openstack.py

Vincent Planchenault created LIBCLOUD-989:
---------------------------------------------

             Summary: Small bug in common/openstack.py
                 Key: LIBCLOUD-989
                 URL: https://issues.apache.org/jira/browse/LIBCLOUD-989
             Project: Libcloud
          Issue Type: Bug
          Components: Core
         Environment: Python 2.7

libcloud 2.3.0
            Reporter: Vincent Planchenault


Hello,

I encountered a small bug in common/openstack.py, when an Openstack compatible french Cloud Provider wanted to tell me I've used its API at a too high rate.

In this case, the API returned a status 503, with a message composed of fields 'message' and 'request', without 'code' field

The code in line 393 in common/openstack.py raises in this case a TypeError exception, because there is no 'code' field in the values.

I changed this line from:

    if len(values) > 0 and values[0]['code'] == 404 and key_pair_name:

to:

    if len(values) > 0 and 'code' in values[0] and values[0]['code'] == 404 and key_pair_name:

Now, it raises a libcloud.exception_from_message I  can handle properly.

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)