Skip to content

Commit

Permalink
Remove unnecesary argument on errorf call
Browse files Browse the repository at this point in the history
  • Loading branch information
thetonymaster committed Aug 7, 2018
1 parent 81dc636 commit 60dcf42
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func resourceArmLoadBalancerBackendAddressPoolCreate(d *schema.ResourceData, met
}

if read.LoadBalancerPropertiesFormat == nil {
return fmt.Errorf("Error creating LoadBalancer (%q Resource Group %q)", loadBalancerName, resGroup, err)
return fmt.Errorf("Error creating LoadBalancer (%q Resource Group %q)", loadBalancerName, resGroup)
}

var poolId string
Expand Down

0 comments on commit 60dcf42

Please sign in to comment.