From 0486dd0624e97687bc88a61505f4556ff7704f58 Mon Sep 17 00:00:00 2001 From: gulyasm Date: Sat, 17 Jan 2015 16:20:35 +0100 Subject: [PATCH] Fixed wrong cross zone balancing error log. If updating the cross zone balancing in the aws elb resource fails, the error log claimed that the health check configuration failed. Fixed. --- builtin/providers/aws/resource_aws_elb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_elb.go b/builtin/providers/aws/resource_aws_elb.go index 11d9bb7b7..b1424ef03 100644 --- a/builtin/providers/aws/resource_aws_elb.go +++ b/builtin/providers/aws/resource_aws_elb.go @@ -328,7 +328,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") }