alshabib
Committed by Gerrit Code Review

fix in the point to point intent to take into account existing treatments

Change-Id: I9e2fdde93a435a383bbab5dc1bb890e1f0d88433
......@@ -93,7 +93,7 @@ public class PathIntentInstaller implements IntentInstaller<PathIntent> {
while (links.hasNext()) {
builder.matchInport(prev.port());
Link link = links.next();
TrafficTreatment treatment = builder()
TrafficTreatment treatment = builder(intent.treatment())
.setOutput(link.src().port()).build();
FlowRule rule = new DefaultFlowRule(link.src().deviceId(),
......