Marc De Leenheer
Committed by Gerrit Code Review

Tiny fix for bidirectional optical intents

Change-Id: Ied5d67205ecf8ce8b08f78b073ad62488caf8b71
(cherry picked from commit e48f84ea)
...@@ -86,7 +86,7 @@ public class OpticalPathIntentCompiler implements IntentCompiler<OpticalPathInte ...@@ -86,7 +86,7 @@ public class OpticalPathIntentCompiler implements IntentCompiler<OpticalPathInte
86 rules.addAll(createReverseRules(intent)); 86 rules.addAll(createReverseRules(intent));
87 } 87 }
88 88
89 - return Collections.singletonList(new FlowRuleIntent(appId, createRules(intent), intent.resources())); 89 + return Collections.singletonList(new FlowRuleIntent(appId, rules, intent.resources()));
90 } 90 }
91 91
92 /** 92 /**
......