Bump up glbc version.

This commit is contained in:
Prashanth Balasubramanian 2016-04-04 14:10:19 -07:00
parent 73afef4bec
commit 2afc21c021
4 changed files with 11 additions and 7 deletions

View file

@ -59,7 +59,11 @@ func portKey(port int64) string {
func NewBackendPool(
cloud BackendServices,
healthChecker healthchecks.HealthChecker,
nodePool instances.NodePool, namer utils.Namer, ignorePorts []int64, resyncWithCloud bool) *Backends {
nodePool instances.NodePool,
namer utils.Namer,
ignorePorts []int64,
resyncWithCloud bool) *Backends {
ignored := []string{}
for _, p := range ignorePorts {
ignored = append(ignored, portKey(p))