Skip to content

Commit

Permalink
Be less lenient on errors when exec'ing OVS commands
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Constantinescu <aconstan@redhat.com>
  • Loading branch information
alexanderConstantinescu committed Jun 15, 2021
1 parent 4ad3364 commit 7bc45af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/network/node/ovs/ovs.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ const (
)

var ovsBackoff utilwait.Backoff = utilwait.Backoff{
Duration: 500 * time.Millisecond,
Duration: 10 * time.Millisecond,
Factor: 1.25,
Steps: 10,
Steps: 4,
}

// ovsExec implements ovs.Interface via calls to ovs-ofctl and ovs-vsctl
Expand Down

0 comments on commit 7bc45af

Please sign in to comment.