Skip to content

Commit

Permalink
Fix the OVS flow "note" to match 1.5 and earlier
Browse files Browse the repository at this point in the history
  • Loading branch information
danwinship committed May 8, 2017
1 parent 17ebd78 commit 90716a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sdn/plugin/ovscontroller.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func (oc *ovsController) getVersionNote() string {
if VERSION > 254 {
panic("Version too large!")
}
return fmt.Sprintf("note:%02X.%02X", VERSION, oc.pluginId)
return fmt.Sprintf("note:%02X.%02X", oc.pluginId, VERSION)
}

func (oc *ovsController) AlreadySetUp() bool {
Expand Down

0 comments on commit 90716a3

Please sign in to comment.