alshabib
Committed by Gerrit Code Review

do not remove filter rules when pushing vlan rules

Change-Id: Id1703815a50fff934d73ef3ac37951db9c0f02eb
......@@ -233,7 +233,6 @@ public class Olt
deviceId,
deviceVlan,
subscriberVlan));
processFilteringObjectives(deviceId, subscriberPort, true);
} else if (downStatus != null) {
log.error("Subscriber with vlan {} on device {} " +
"on port {} failed downstream uninstallation: {}",
......@@ -336,7 +335,6 @@ public class Olt
deviceVlan,
subscriberVlan));
processFilteringObjectives(deviceId, subscriberPort, false);
} else if (downStatus != null) {
log.error("Subscriber with vlan {} on device {} " +
"on port {} failed downstream installation: {}",
......
......@@ -23,6 +23,13 @@
<null/>
</completers>
</command>
<command>
<action class="org.onosproject.olt.cli.SubscriberRemoveCommand"/>
<completers>
<ref component-id="deviceIdCompleter"/>
<null/>
</completers>
</command>
</command-bundle>
<bean id="deviceIdCompleter" class="org.onosproject.cli.net.DeviceIdCompleter"/>
......