Skip to content

Commit

Permalink
fix u2o code err (#2300)
Browse files Browse the repository at this point in the history
  • Loading branch information
changluyi committed Feb 7, 2023
1 parent 993fefa commit f81c43a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pkg/daemon/ovs_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -346,9 +346,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(nicName, ipAddr, u2oInterconnectionIP, false, true); err != nil {
return err
} else {
if err := waitNetworkReady(nicName, ipAddr, u2oInterconnectionIP, false, true); err != nil {
return err
}
}
}

Expand Down

0 comments on commit f81c43a

Please sign in to comment.