mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-21 12:22:18 +02:00
Use VERSATILE for flow objectives from paths
Currently the default pipeliner does not support SELECTIVE mode Change-Id: I6647f9645f200888bb5c59e4134c6967a3f776dd
This commit is contained in:
parent
c3d2f8b89e
commit
0a9ad9a3bc
@ -122,7 +122,9 @@ public class PathIntentFlowObjectiveCompiler
|
|||||||
.withPriority(priority)
|
.withPriority(priority)
|
||||||
.fromApp(appId)
|
.fromApp(appId)
|
||||||
.makePermanent()
|
.makePermanent()
|
||||||
.withFlag(ForwardingObjective.Flag.SPECIFIC)
|
// FIXME - reevaluate how to set this flag.
|
||||||
|
// Must be VERSATILE now because default pipeline only supports VERSATILE
|
||||||
|
.withFlag(ForwardingObjective.Flag.VERSATILE)
|
||||||
.add());
|
.add());
|
||||||
devices.add(ingress.deviceId());
|
devices.add(ingress.deviceId());
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user