Charles M.C. Chan
Committed by Gerrit Code Review

Correctly insert a drop action for empty treatment

It seems to me that the if-block between line 73 to 80 is ineffective in current implementation

Change-Id: Ia28fc9c7c4aace7c60f67a7926ba451e2236c4c8
......@@ -82,7 +82,7 @@ public class DefaultSingleTablePipeline extends AbstractHandlerBehaviour impleme
FlowRule.Builder ruleBuilder = DefaultFlowRule.builder()
.forDevice(deviceId)
.withSelector(selector)
.withTreatment(fwd.treatment())
.withTreatment(treatment)
.fromApp(fwd.appId())
.withPriority(fwd.priority());
......