Merge pull request #10985 from jmhodges/correct_unbound_error

correct unbound error in ec2.py's RDS code path
This commit is contained in:
Brian Coca 2015-05-11 23:01:55 -04:00
commit 3a7cb413d1

View file

@ -382,6 +382,7 @@ class Ec2Inventory(object):
for instance in instances:
self.add_rds_instance(instance, region)
except boto.exception.BotoServerError, e:
error = e.message
if e.error_code == 'AuthFailure':
error = self.get_auth_error_message()
if not e.reason == "Forbidden":