...
|
...
|
@@ -130,10 +130,8 @@ public class AwsQueryService { |
|
|
commGroups = new ArrayList<>();
|
|
|
CommAutoScalingGroup commGroup;
|
|
|
for(AutoScalingGroup group : result.getAutoScalingGroups()){
|
|
|
if(StringUtils.isNotBlank(equalsName)){
|
|
|
if(!group.getAutoScalingGroupName().toLowerCase().equals(equalsName)){
|
|
|
continue;
|
|
|
}
|
|
|
if(StringUtils.isNotBlank(equalsName)&&!equalsName.equals(group.getAutoScalingGroupName())){
|
|
|
continue;
|
|
|
}
|
|
|
commGroup = new CommAutoScalingGroup();
|
|
|
commGroup.setScalingGroupName(group.getAutoScalingGroupName());
|
...
|
...
|
|