X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fprotocol_plugins%2Fopenflow%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fprotocol_plugin%2Fopenflow%2Fcore%2Finternal%2FControllerIO.java;h=a4b75843376071ba402729f63e591c2e7bb0b7fe;hb=046c9dd2d8fef6c44e88c1bd9f6a71c687e98ec5;hp=3e39ab26e6680603391da98b08bef1d82e1df6ba;hpb=f5bc1a15da8600a9bc6dc7829792566cf0e72e7c;p=controller.git diff --git a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/core/internal/ControllerIO.java b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/core/internal/ControllerIO.java index 3e39ab26e6..a4b7584337 100644 --- a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/core/internal/ControllerIO.java +++ b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/core/internal/ControllerIO.java @@ -35,7 +35,7 @@ public class ControllerIO { public ControllerIO(IController l) { this.listener = l; this.openFlowPort = defaultOpenFlowPort; - String portString = System.getProperty("port"); + String portString = System.getProperty("of.listenPort"); if (portString != null) { try { openFlowPort = Short.decode(portString).shortValue();