Details
-
Bug
-
Status: Resolved
-
Resolution: Done
-
Beryllium
-
None
-
None
-
None
-
Operating System: All
Platform: All
-
6056
Description
In class org.opendaylight.netvirt.openstack.netvirt.sfc.standalone.openflow13.NetvirtSfcStandaloneOF13Provider, method processAclEntry(), logging is wrong. From line 185:
185 long localOfPort = southbound.getOFPort(bridgeNode, CLIENT_PORT_NAME);
186 if (localOfPort == 0L) {
187 LOG.error("programAclEntry: Could not identify local port {} -> OF ({}) on {}",
188 CLIENT_GPE_PORT_NAME, localOfPort, bridgeNode);
189 return;
190 }
Obviously, line 188 should be instead:
188 CLIENT_PORT_NAME, localOfPort, bridgeNode);