Yunpeng Zhang
Committed by Gerrit Code Review

Add a MAX_PRIORITY for demo flowtest

Change-Id: Ic79069ebf0d8f5fd72f4e3e35146553a49f73e10
......@@ -553,7 +553,7 @@ public class DemoInstaller implements DemoApi {
.matchEthDst(MacAddress.valueOf((Integer.MAX_VALUE - i) * RandomUtils.nextInt()));
int randomPriority = RandomUtils.nextInt();
int randomPriority = RandomUtils.nextInt(FlowRule.MAX_PRIORITY);
FlowRule f = DefaultFlowRule.builder()
.forDevice(d.id())
.withSelector(sbuilder.build())
......