Merge pull request #831 from gulyasm/log-typo

Fixed wrong cross zone balancing error log.
This commit is contained in:
Armon Dadgar 2015-01-20 13:20:25 -08:00
commit df71834ff7
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ func resourceAwsElbUpdate(d *schema.ResourceData, meta interface{}) error {
}
_, err := elbconn.ModifyLoadBalancerAttributes(&attrs)
if err != nil {
return fmt.Errorf("Failure configuring health check: %s", err)
return fmt.Errorf("Failure configuring cross zone balancing: %s", err)
}
d.SetPartial("cross_zone_load_balancing")
}