Skip to content

Commit

Permalink
fix u2o code err
Browse files Browse the repository at this point in the history
  • Loading branch information
changluyi committed Feb 8, 2023
1 parent b9d58b4 commit 85fb419
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkg/daemon/ovs.go
Original file line number Diff line number Diff line change
Expand Up @@ -303,9 +303,10 @@ func configureContainerNic(nicName, ifName string, ipAddr, gateway string, isDef
if err := waitNetworkReady(ifName, ipAddr, u2oInterconnectionIP, false, true); err != nil {
return err
}
}
if err := waitNetworkReady(ifName, ipAddr, u2oInterconnectionIP, false, true); err != nil {
return err
} else {
if err := waitNetworkReady(ifName, ipAddr, u2oInterconnectionIP, false, true); err != nil {
return err
}
}
}
if nicType != util.InternalType {
Expand Down

0 comments on commit 85fb419

Please sign in to comment.