Actually retry LinkSetUp

Signed-off-by: Alexander Polakov <plhk@sdf.org>
This commit is contained in:
Alexander Polakov 2016-07-19 14:09:23 +03:00
parent ae3f09faeb
commit daf4c97f7a
1 changed files with 1 additions and 0 deletions

View File

@ -303,6 +303,7 @@ func (n *networkNamespace) AddInterface(srcName, dstPrefix string, options ...If
for err = nlh.LinkSetUp(iface); err != nil && cnt < 3; cnt++ {
log.Debugf("retrying link setup because of: %v", err)
time.Sleep(10 * time.Millisecond)
err = nlh.LinkSetUp(iface)
}
if err != nil {
return fmt.Errorf("failed to set link up: %v", err)