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 138fc5f commit 68b34c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Binary file added dist/images/test-server
Binary file not shown.
7 changes: 4 additions & 3 deletions pkg/daemon/ovs_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -340,9 +340,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(nicName, ipAddr, u2oInterconnectionIP, false, true); err != nil {
return err
}
}
}

Expand Down

0 comments on commit 68b34c9

Please sign in to comment.