From: Sam Hague Date: Mon, 21 Dec 2015 22:36:55 +0000 (-0500) Subject: Use strict for flows X-Git-Tag: release/beryllium-sr2~187^2 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=d15153f8e3032dc223cd77c8e130da95f0a9bfac;p=netvirt.git Use strict for flows Change-Id: I8ec483eccc617717fa0a9f42cf3adaed9b51d18e Signed-off-by: Sam Hague --- diff --git a/utils/mdsal-openflow/src/main/java/org/opendaylight/ovsdb/utils/mdsal/openflow/FlowUtils.java b/utils/mdsal-openflow/src/main/java/org/opendaylight/ovsdb/utils/mdsal/openflow/FlowUtils.java index 3cb092448f..74fea32479 100644 --- a/utils/mdsal-openflow/src/main/java/org/opendaylight/ovsdb/utils/mdsal/openflow/FlowUtils.java +++ b/utils/mdsal-openflow/src/main/java/org/opendaylight/ovsdb/utils/mdsal/openflow/FlowUtils.java @@ -118,7 +118,7 @@ public class FlowUtils { final FlowId flowId = new FlowId(flowName); flowBuilder .setId(flowId) - .setStrict(false) + .setStrict(true) .setBarrier(false) .setTableId(table) .setKey(new FlowKey(flowId))