You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.WithMessage($"Failed to deserialize payload object when deserializing {nameof(ActorSelectionMessage)} with payload [SerializerId=13, Manifest=SM] addressed to [{childName}]")
54
+
.WithMessage($"Failed to deserialize payload object when deserializing {nameof(ActorSelectionMessage)} with payload [SerializerId=13, Manifest=SM] addressed to [{childName}]. {Serializer.GetErrorForSerializerId(13)}")
Copy file name to clipboardExpand all lines: src/core/Akka.Remote/Serialization/MessageContainerSerializer.cs
+3-1
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,9 @@ public override object FromBinary(byte[] bytes, Type type)
100
100
:string.Empty;
101
101
102
102
thrownewSerializationException(
103
-
$"Failed to deserialize payload object when deserializing {nameof(ActorSelectionMessage)} with payload [SerializerId={payload.SerializerId}, Manifest={manifest}] addressed to [{string.Join(",",elements.Select(e =>e.ToString()))}]",ex);
103
+
$"Failed to deserialize payload object when deserializing {nameof(ActorSelectionMessage)} with "+
104
+
$"payload [SerializerId={payload.SerializerId}, Manifest={manifest}] addressed to ["+
[11]=newSerializerErrorCode(11,"Akka.DistributedData.Serialization.ReplicatedDataSerializer, Akka.DistributedData","DistributedData.DefaultConfig() or ClusterSharding.DefaultConfig()","ClusterSharding.Get(), DistributedData.Get()"),
27
+
[12]=newSerializerErrorCode(12,"Akka.DistributedData.Serialization.ReplicatorMessageSerializer, Akka.DistributedData","DistributedData.DefaultConfig() or ClusterSharding.DefaultConfig()","ClusterSharding.Get(), DistributedData.Get()"),
0 commit comments