Be more specific about the type of error to retry on
This commit is contained in:
parent
24d9aada11
commit
ec75490779
1 changed files with 10 additions and 2 deletions
|
@ -175,8 +175,16 @@ func (b *Backends) create(igs []*compute.InstanceGroup, namedPort *compute.Named
|
||||||
PortName: namedPort.Name,
|
PortName: namedPort.Name,
|
||||||
}
|
}
|
||||||
if err := b.cloud.CreateBackendService(backend); err != nil {
|
if err := b.cloud.CreateBackendService(backend); err != nil {
|
||||||
glog.Infof("Error creating backend service with balancing mode %v", bm)
|
// This is probably a failure because we tried to create the backend
|
||||||
errs = append(errs, fmt.Sprintf("%v", err))
|
// with balancingMode=RATE when there are already backends with
|
||||||
|
// balancingMode=UTILIZATION. Just ignore it and retry setting
|
||||||
|
// balancingMode=UTILIZATION (b/35102911).
|
||||||
|
if utils.IsHTTPErrorCode(err, http.StatusBadRequest) {
|
||||||
|
glog.Infof("Error creating backend service with balancing mode %v:%v", bm, err)
|
||||||
|
errs = append(errs, fmt.Sprintf("%v", err))
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
return nil, err
|
||||||
}
|
}
|
||||||
return b.Get(namedPort.Port)
|
return b.Get(namedPort.Port)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue