chaokunyang commented on issue #2066: URL: https://github.com/apache/fury/issues/2066#issuecomment-2663548728
If you force Fury to use the default JIT/Codegen serializer, the writeObject/readObject method in SimplePrincipalCollection won't be invoked, which may be unexpected if users did some special action in those methods. If you do want to enfore fury serialization, you can do it by: ``` fury.registerSerializer(SimplePrincipalCollection.class, org.apache.fury.serializer.CodegenSerializer#loadCodegenSerializer(SimplePrincipalCollection.class)); ``` -- 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]
