Skip to content

Commit

Permalink
provider/google: Fix google_compute_backend_service max_utilization b…
Browse files Browse the repository at this point in the history
…ackend attribute

Fixes issue #4985 by correcting copy/paste error
N.B. There is still no test coverage for this issue.
  • Loading branch information
billf committed Feb 9, 2016
1 parent c628dd9 commit 538b1fa
Showing 1 changed file with 1 addition and 1 deletion.
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 538b1fa

Please sign in to comment.