miladamery commented on issue #1806: URL: https://github.com/apache/fury/issues/1806#issuecomment-2295171113
@chaokunyang Thanks for your reply, i really appreciate it. The serializer mentioned in issue didn't work so I though problem is that fury doesn't respect custom serializers for fields which was wrong. By debugging I found what the problem was. `ActorRef` is an interface not the implementation, on serializing/deserializing fury was checking the actual implementation type which was `ActorRefAdapter` and was choosing the general serializer for `ActorRefAdapter` not the custom one provided. So i changed FuryActorRefSerializer type from `ActorRef` to `ActorRefAdapter` and everything works now. But my question is shouldn't fury pick the custom serializer for interface and its implementations? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
