Go fmt updates

This commit is contained in:
clint shryock 2016-01-12 16:07:26 -06:00
parent a5f8c39ddd
commit 317ab83743
2 changed files with 2 additions and 2 deletions

View File

@ -326,7 +326,7 @@ func resourceAwsEcsServiceDelete(d *schema.ResourceData, meta interface{}) error
return resp, "FAILED", err
}
log.Printf("[DEBUG] ECS service %s is currently %q", *resp.Services[0].Status)
log.Printf("[DEBUG] ECS service (%s) is currently %q", d.Id(), *resp.Services[0].Status)
return resp, *resp.Services[0].Status, nil
},
}

View File

@ -52,7 +52,7 @@ func resourceArmAvailabilitySet() *schema.Resource {
value := v.(int)
if value > 3 {
errors = append(errors, fmt.Errorf(
"Maximum value for `platform_fault_domain_count` is 3", k))
"Maximum value for (%s) is 3", k))
}
return
},