ke han
Committed by Gerrit Code Review

here is a bug : there would be at most 10 second between group_add to group_adde…

…d, but if in the 10 second, the group was modified, no group_added notify would be receive, but a group_updated instead. with out the change, the consequnce flow would not be add

Change-Id: I5703aafc6169dc595adc36a79fe8fabd68eb8fbc
......@@ -649,7 +649,8 @@ public class OltPipeline extends AbstractHandlerBehaviour implements Pipeliner {
private class InnerGroupListener implements GroupListener {
@Override
public void event(GroupEvent event) {
if (event.type() == GroupEvent.Type.GROUP_ADDED) {
if (event.type() == GroupEvent.Type.GROUP_ADDED ||
event.type() == GroupEvent.Type.GROUP_UPDATED) {
GroupKey key = event.subject().appCookie();
NextObjective obj = pendingGroups.getIfPresent(key);
......