Skip to content

Commit e8e4616

Browse files
committed
drivers/ovsdbDriver.go: fix govet UUID
Signed-off-by: Cristian Staretu <[email protected]>
1 parent 8a8eae9 commit e8e4616

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/ovsdbDriver.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ func (d *OvsdbDriver) UpdatePolicingRate(intfName string, burst int, bandwidth i
368368
// DeletePort deletes a port from OVS
369369
func (d *OvsdbDriver) DeletePort(intfName string) error {
370370
portUUIDStr := intfName
371-
portUUID := []libovsdb.UUID{{portUUIDStr}}
371+
portUUID := []libovsdb.UUID{{GoUuid: portUUIDStr}}
372372
opStr := "delete"
373373

374374
// insert/delete a row in Interface table
@@ -418,8 +418,8 @@ func (d *OvsdbDriver) DeletePort(intfName string) error {
418418
func (d *OvsdbDriver) CreateVtep(intfName string, vtepRemoteIP string) error {
419419
portUUIDStr := intfName
420420
intfUUIDStr := fmt.Sprintf("Intf%s", intfName)
421-
portUUID := []libovsdb.UUID{{portUUIDStr}}
422-
intfUUID := []libovsdb.UUID{{intfUUIDStr}}
421+
portUUID := []libovsdb.UUID{{GoUuid: portUUIDStr}}
422+
intfUUID := []libovsdb.UUID{{GoUuid: intfUUIDStr}}
423423
opStr := "insert"
424424
intfType := "vxlan"
425425
var err error

0 commit comments

Comments
 (0)