Skip to content

Commit

Permalink
fix(aws): Fix register with load balancer (#1617)
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Reynolds committed May 3, 2017
1 parent 51fc241 commit 9d5614e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
@Component("registerInstancesFromLoadBalancerDescription")
class RegisterInstancesWithLoadBalancerAtomicOperationConverter extends AbstractAtomicOperationsCredentialsSupport {
private Boolean isClassic (Map input) {
return input.containsKey("targetGroups");
return !input.containsKey("targetGroupNames");
}

@Override
Expand Down

0 comments on commit 9d5614e

Please sign in to comment.