ONOS-4651 fix
Change-Id: I9f09745237fc5b3b4e1f275288d36db3414e58db
Showing
1 changed file
with
3 additions
and
0 deletions
... | @@ -755,6 +755,9 @@ public class DistributedGroupStore | ... | @@ -755,6 +755,9 @@ public class DistributedGroupStore |
755 | existing.state()); | 755 | existing.state()); |
756 | synchronized (existing) { | 756 | synchronized (existing) { |
757 | existing.setState(GroupState.PENDING_DELETE); | 757 | existing.setState(GroupState.PENDING_DELETE); |
758 | + getGroupStoreKeyMap(). | ||
759 | + put(new GroupStoreKeyMapKey(existing.deviceId(), existing.appCookie()), | ||
760 | + existing); | ||
758 | } | 761 | } |
759 | log.debug("deleteGroupDescriptionInternal: in device {} issuing GROUP_REMOVE_REQUESTED", | 762 | log.debug("deleteGroupDescriptionInternal: in device {} issuing GROUP_REMOVE_REQUESTED", |
760 | deviceId); | 763 | deviceId); | ... | ... |
-
Please register or login to post a comment