Skip to content

Commit

Permalink
Merge pull request #14098 from danwinship/fix-sdn-note
Browse files Browse the repository at this point in the history
Merged by openshift-bot
  • Loading branch information
OpenShift Bot authored May 9, 2017
2 parents aa4f611 + 90716a3 commit 9063c2c
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 9063c2c

Please sign in to comment.