Skip to content

Commit

Permalink
Don't check status of a failed delete operation
Browse files Browse the repository at this point in the history
  • Loading branch information
bprashanth committed Mar 12, 2015
1 parent c03b080 commit 4849f33
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/cloudprovider/gce/gce.go
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ func (gce *GCECloud) DeleteTCPLoadBalancer(name, region string) error {
op, err = gce.service.TargetPools.Delete(gce.projectID, region, name).Do()
if err != nil {
glog.Warningln("Failed to delete Target Pool %s, got error %s.", name, err.Error())
return err
}
err = gce.waitForRegionOp(op, region)
if err != nil {
Expand Down

0 comments on commit 4849f33

Please sign in to comment.