mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Gracefully handle redundant ipvs service create failures
Signed-off-by: Alessandro Boch <aboch@docker.com>
This commit is contained in:
parent
1795dc1bbe
commit
d565d5f2d2
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ func (sb *sandbox) addLBBackend(ip, vip net.IP, fwMark uint32, ingressPorts []*P
|
||||||
return
|
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)
|
logrus.Errorf("Failed to create a new service for vip %s fwmark %d: %v", vip, fwMark, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue