Jian Li
Committed by Gerrit Code Review

Bug fix: display correct treatment content

Change-Id: I112352c172289325a84234754e4a2106461e36d3
...@@ -263,7 +263,7 @@ public class DefaultFlowRule implements FlowRule { ...@@ -263,7 +263,7 @@ public class DefaultFlowRule implements FlowRule {
263 .add("deviceId", deviceId) 263 .add("deviceId", deviceId)
264 .add("priority", priority) 264 .add("priority", priority)
265 .add("selector", selector.criteria()) 265 .add("selector", selector.criteria())
266 - .add("treatment", treatment == null ? "N/A" : treatment.allInstructions()) 266 + .add("treatment", treatment == null ? "N/A" : treatment)
267 .add("tableId", tableId) 267 .add("tableId", tableId)
268 .add("created", created) 268 .add("created", created)
269 .add("payLoad", payLoad) 269 .add("payLoad", payLoad)
......