Skip to content

Commit

Permalink
Merge pull request #5075 from uber/fix-issue-4895
Browse files Browse the repository at this point in the history
provider/google: Fix google_compute_backend_service max_utilization backend attribute
  • Loading branch information
jen20 committed Feb 12, 2016
2 parents a7af4c4 + 6e46ef1 commit 636f05a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ BUG FIXES:
* provider/aws: Fix reading auto scaling group load balancers [GH-5045]
* provider/aws: Fix reading auto scaling group availability zones [GH-5044]
* provider/docker: Fix the default docker_host value [GH-5088]
* provider/google: Fix backend service max_utilization attribute [GH-5075]

## 0.6.11 (February 1, 2016)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ func expandBackends(configured []interface{}) []*compute.Backend {
if v, ok := data["max_rate_per_instance"]; ok {
b.MaxRatePerInstance = v.(float64)
}
if v, ok := data["max_rate_per_instance"]; ok {
if v, ok := data["max_utilization"]; ok {
b.MaxUtilization = v.(float64)
}

Expand Down

0 comments on commit 636f05a

Please sign in to comment.