Skip to content

Commit 832f1ac

Browse files
committed
Ignore invalid ofport returned in ovsdb query
1 parent 21fd7ee commit 832f1ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/ovsd/ovsdbDriver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,7 @@ func (d *OvsdbDriver) GetOfpPortNo(intfName string) (uint32, error) {
839839

840840
if err == nil && len(row) > 0 && len(row[0].Rows) > 0 {
841841
value := row[0].Rows[0]["ofport"]
842-
if reflect.TypeOf(value).Kind() == reflect.Float64 {
842+
if value != -1 && reflect.TypeOf(value).Kind() == reflect.Float64 {
843843
//retry few more time. Due to asynchronous call between
844844
//port creation and populating ovsdb entry for the interface
845845
//may not be populated instantly.

0 commit comments

Comments
 (0)