Committed by
Gerrit Code Review
ONOS-1647 Removed persistency option for packet requests store.
Change-Id: I762673b1a10aefe1cb5e50fd0c3a05479a1a65c6
Showing
1 changed file
with
1 additions
and
0 deletions
... | @@ -167,6 +167,7 @@ public class DistributedPacketStore | ... | @@ -167,6 +167,7 @@ public class DistributedPacketStore |
167 | public PacketRequestTracker() { | 167 | public PacketRequestTracker() { |
168 | requests = storageService.<PacketRequest, Boolean>consistentMapBuilder() | 168 | requests = storageService.<PacketRequest, Boolean>consistentMapBuilder() |
169 | .withName("packet-requests") | 169 | .withName("packet-requests") |
170 | + .withPartitionsDisabled() | ||
170 | .withSerializer(Serializer.using( | 171 | .withSerializer(Serializer.using( |
171 | new KryoNamespace.Builder().register(KryoNamespaces.API).build())) | 172 | new KryoNamespace.Builder().register(KryoNamespaces.API).build())) |
172 | .withSerializer(new Serializer() { | 173 | .withSerializer(new Serializer() { | ... | ... |
-
Please register or login to post a comment