Steffen Gebert
Committed by Gerrit Code Review

Fix exception "class not registered for kryo" for setQueue instruction

The exception

    Class is not registered: org.onosproject.net.flow.instructions.Instructions$SetQueueInstruction

occurs, because this class was not registered for kryo.

See also
https://groups.google.com/a/onosproject.org/forum/#!topic/onos-discuss/hVJxK7YhWA4

Change-Id: I73d6d0ba59c0fafa0990264cc3e4a3c0b1f5eb56
...@@ -389,6 +389,7 @@ public final class KryoNamespaces { ...@@ -389,6 +389,7 @@ public final class KryoNamespaces {
389 Instructions.NoActionInstruction.class, 389 Instructions.NoActionInstruction.class,
390 Instructions.OutputInstruction.class, 390 Instructions.OutputInstruction.class,
391 Instructions.GroupInstruction.class, 391 Instructions.GroupInstruction.class,
392 + Instructions.SetQueueInstruction.class,
392 Instructions.TableTypeTransition.class, 393 Instructions.TableTypeTransition.class,
393 L0ModificationInstruction.class, 394 L0ModificationInstruction.class,
394 L0ModificationInstruction.L0SubType.class, 395 L0ModificationInstruction.L0SubType.class,
......