Fix for Host2Host Intent issue.
- installing HostToHostIntent was failing on multi-instance cluster Change-Id: Ib473a49459c333bfbe74fbcec8363473739cf424
Showing
2 changed files
with
2 additions
and
0 deletions
... | @@ -241,6 +241,7 @@ public class PathIntent extends ConnectivityIntent { | ... | @@ -241,6 +241,7 @@ public class PathIntent extends ConnectivityIntent { |
241 | } | 241 | } |
242 | 242 | ||
243 | // for path protection purposes | 243 | // for path protection purposes |
244 | + @Beta | ||
244 | public enum ProtectionType { | 245 | public enum ProtectionType { |
245 | /** | 246 | /** |
246 | * Intent within primary path. | 247 | * Intent within primary path. | ... | ... |
... | @@ -547,6 +547,7 @@ public final class KryoNamespaces { | ... | @@ -547,6 +547,7 @@ public final class KryoNamespaces { |
547 | .register(ClosedOpenRange.class) | 547 | .register(ClosedOpenRange.class) |
548 | .register(DiscreteResourceCodec.class) | 548 | .register(DiscreteResourceCodec.class) |
549 | .register(new ImmutableByteSequenceSerializer(), ImmutableByteSequence.class) | 549 | .register(new ImmutableByteSequenceSerializer(), ImmutableByteSequence.class) |
550 | + .register(PathIntent.ProtectionType.class) | ||
550 | .build("API"); | 551 | .build("API"); |
551 | 552 | ||
552 | /** | 553 | /** | ... | ... |
-
Please register or login to post a comment