Makes the API requests to return nodes' information too

pull/11261/head
Victor Schröder 10 years ago
parent dbb0304cea
commit 98a5531966

@ -420,8 +420,8 @@ class Ec2Inventory(object):
self.fail_with_error(error) self.fail_with_error(error)
def get_elasticache_clusters_by_region(self, region): def get_elasticache_clusters_by_region(self, region):
''' Makes an AWS API call to the list of ElastiCache clusters in a ''' Makes an AWS API call to the list of ElastiCache clusters (with
particular region.''' nodes' info) in a particular region.'''
# ElastiCache boto module doesn't provide a get_all_intances method, # ElastiCache boto module doesn't provide a get_all_intances method,
# that's why we need to call describe directly (it would be called by # that's why we need to call describe directly (it would be called by
@ -429,7 +429,9 @@ class Ec2Inventory(object):
try: try:
conn = elasticache.connect_to_region(region) conn = elasticache.connect_to_region(region)
if conn: if conn:
response = conn.describe_cache_clusters() # show_cache_node_info = True
# because we also want nodes' information
response = conn.describe_cache_clusters(None, None, None, True)
except boto.exception.BotoServerError as e: except boto.exception.BotoServerError as e:
error = e.reason error = e.reason

Loading…
Cancel
Save