Skip to content

Commit

Permalink
fix(aws/loadBalancer): Pass the load balancer type properly (#1846)
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Reynolds committed Dec 8, 2017
1 parent 6d326ea commit 8ae586c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class UpsertLoadBalancerForceRefreshTask extends AbstractCloudProviderAwa
stage.context.targets.each { Map target ->
target.availabilityZones.keySet().each { String region ->
cacheService.forceCacheUpdate(
cloudProvider, REFRESH_TYPE, [loadBalancerName: target.name, region: region, account: target.credentials, loadBalancerType: target.loadBalancerType]
cloudProvider, REFRESH_TYPE, [loadBalancerName: target.name, region: region, account: target.credentials, loadBalancerType: stage.context.loadBalancerType]
)
}
}
Expand Down

0 comments on commit 8ae586c

Please sign in to comment.