commit | e48f84eab45051a6499641eb86e0564e8b5a8c69 | [log] [tgz] |
---|---|---|
author | Marc De Leenheer <marc@onlab.us> | Thu Jul 02 16:06:50 2015 -0700 |
committer | Gerrit Code Review <gerrit@onlab.us> | Thu Jul 09 14:29:31 2015 +0000 |
tree | bbba2645f6f5581ee603b4b4b7007e326877dcaa | |
parent | e76f653a89e880e06164f7ccac958171780f58b0 [diff] |
Tiny fix for bidirectional optical intents Change-Id: Ied5d67205ecf8ce8b08f78b073ad62488caf8b71
diff --git a/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalPathIntentCompiler.java b/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalPathIntentCompiler.java index 61a2ac7..ca9ae5c 100644 --- a/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalPathIntentCompiler.java +++ b/core/net/src/main/java/org/onosproject/net/intent/impl/compiler/OpticalPathIntentCompiler.java
@@ -86,7 +86,7 @@ rules.addAll(createReverseRules(intent)); } - return Collections.singletonList(new FlowRuleIntent(appId, createRules(intent), intent.resources())); + return Collections.singletonList(new FlowRuleIntent(appId, rules, intent.resources())); } /**