Committed by
Gerrit Code Review
do not remove filter rules when pushing vlan rules
Change-Id: Id1703815a50fff934d73ef3ac37951db9c0f02eb
Showing
2 changed files
with
7 additions
and
2 deletions
... | @@ -233,7 +233,6 @@ public class Olt | ... | @@ -233,7 +233,6 @@ public class Olt |
233 | deviceId, | 233 | deviceId, |
234 | deviceVlan, | 234 | deviceVlan, |
235 | subscriberVlan)); | 235 | subscriberVlan)); |
236 | - processFilteringObjectives(deviceId, subscriberPort, true); | ||
237 | } else if (downStatus != null) { | 236 | } else if (downStatus != null) { |
238 | log.error("Subscriber with vlan {} on device {} " + | 237 | log.error("Subscriber with vlan {} on device {} " + |
239 | "on port {} failed downstream uninstallation: {}", | 238 | "on port {} failed downstream uninstallation: {}", |
... | @@ -336,7 +335,6 @@ public class Olt | ... | @@ -336,7 +335,6 @@ public class Olt |
336 | deviceVlan, | 335 | deviceVlan, |
337 | subscriberVlan)); | 336 | subscriberVlan)); |
338 | 337 | ||
339 | - processFilteringObjectives(deviceId, subscriberPort, false); | ||
340 | } else if (downStatus != null) { | 338 | } else if (downStatus != null) { |
341 | log.error("Subscriber with vlan {} on device {} " + | 339 | log.error("Subscriber with vlan {} on device {} " + |
342 | "on port {} failed downstream installation: {}", | 340 | "on port {} failed downstream installation: {}", | ... | ... |
... | @@ -23,6 +23,13 @@ | ... | @@ -23,6 +23,13 @@ |
23 | <null/> | 23 | <null/> |
24 | </completers> | 24 | </completers> |
25 | </command> | 25 | </command> |
26 | + <command> | ||
27 | + <action class="org.onosproject.olt.cli.SubscriberRemoveCommand"/> | ||
28 | + <completers> | ||
29 | + <ref component-id="deviceIdCompleter"/> | ||
30 | + <null/> | ||
31 | + </completers> | ||
32 | + </command> | ||
26 | </command-bundle> | 33 | </command-bundle> |
27 | 34 | ||
28 | <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/> | 35 | <bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/> | ... | ... |
-
Please register or login to post a comment