Hyunsun Moon
Committed by Gerrit Code Review

Fixed packet request for multiple devices

Currently, it only installs the reuqest to the first registered device.

Change-Id: Ie376760be26544a9f8ece98d76e962cf536ca7cb
......@@ -221,6 +221,7 @@ public class DistributedPacketStore
firstRequest.set(true);
return ImmutableSet.of(request);
} else if (!existingRequests.contains(request)) {
firstRequest.set(true);
return ImmutableSet.<PacketRequest>builder()
.addAll(existingRequests)
.add(request)
......