Skip to content

Commit

Permalink
CLDSVCS-1409 buy space
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Aug 11, 2015
1 parent 10d3ed1 commit e5f4d21
Showing 1 changed file with 5 additions and 3 deletions.
Expand Up @@ -148,10 +148,12 @@ protected Map<String, String> getAutoScalingGroupsMetricAlarmNames() {
String autoScalingGroupName = getAutoScalingGroupName(
metricAlarm.getDimensions());

if (autoScalingGroupName != null) {
autoScalingGroupsMetricAlarmNames.put(
autoScalingGroupName, metricAlarm.getAlarmName());
if (autoScalingGroupName == null) {
continue;
}

autoScalingGroupsMetricAlarmNames.put(
autoScalingGroupName, metricAlarm.getAlarmName());
}

nextToken = describeAlarmsResult.getNextToken();
Expand Down

0 comments on commit e5f4d21

Please sign in to comment.