Merge pull request #1627 from aboch/red

Gracefully handle redundant ipvs service create failures
This commit is contained in:
Madhu Venugopal 2017-01-31 20:35:00 -08:00 committed by GitHub
commit c0ebd050c1
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ func (sb *sandbox) addLBBackend(ip, vip net.IP, fwMark uint32, ingressPorts []*P
return
}
if err := i.NewService(s); err != nil {
if err := i.NewService(s); err != nil && err != syscall.EEXIST {
logrus.Errorf("Failed to create a new service for vip %s fwmark %d: %v", vip, fwMark, err)
return
}