Yuta HIGUCHI

DistributedFlowRuleStore: register FlowRuleEvent

Change-Id: I1f904a283c8e619a6ec9094d62ddfba44a41c119
...@@ -158,6 +158,7 @@ public class DistributedFlowRuleStore ...@@ -158,6 +158,7 @@ public class DistributedFlowRuleStore
158 serializerPool = KryoNamespace.newBuilder() 158 serializerPool = KryoNamespace.newBuilder()
159 .register(DistributedStoreSerializers.STORE_COMMON) 159 .register(DistributedStoreSerializers.STORE_COMMON)
160 .nextId(DistributedStoreSerializers.STORE_CUSTOM_BEGIN) 160 .nextId(DistributedStoreSerializers.STORE_CUSTOM_BEGIN)
161 + .register(FlowRuleEvent.class)
161 .build(); 162 .build();
162 } 163 }
163 }; 164 };
......