wkuranowski opened a new issue, #1654:
URL: https://github.com/apache/incubator-fury/issues/1654

   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/incubator-fury/issues) and found no similar 
issues.
   
   
   ### Version
   
   Fury 0.5.1
   Java 22
   
   
   ### Component(s)
   
   Java
   
   ### Minimal reproduce step
   
   I am unable to deserialize objects from Fury 0.5.0.
   
   example bytes which works fine with 0.5.0:
   `byte[] bytes0_5_0 = new byte[] {2, -1, -80, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, -3, -3};`
   
   In Fury 0.5.1 I get an exception:
   ```
   java.lang.NullPointerException: Cannot read field "serializer" because 
"classInfo" is null
           at 
org.apache.fury.resolver.ClassResolver.getOrUpdateClassInfo(ClassResolver.java:1129)
 ~[fury-core-0.5.1.jar!/:0.5.1]
           at 
org.apache.fury.resolver.ClassResolver.readClassInfo(ClassResolver.java:1563) 
~[fury-core-0.5.1.jar!/:0.5.1]
           at org.apache.fury.Fury.readRef(Fury.java:825) 
~[fury-core-0.5.1.jar!/:0.5.1]
           at 
org.apache.fury.serializer.collection.GuavaCollectionSerializers$ImmutableSortedSetSerializer.newCollection(GuavaCollectionSerializers.java:196)
 ~[fury-core-0.5.1.jar!/:0.5.1]
           at 
org.apache.fury.serializer.collection.CollectionSerializer.read(CollectionSerializer.java:50)
 ~[fury-core-0.5.1.jar!/:0.5.1]
           at 
org.apache.fury.serializer.collection.CollectionSerializer.read(CollectionSerializer.java:27)
 ~[fury-core-0.5.1.jar!/:0.5.1]
           at org.apache.fury.Fury.readDataInternal(Fury.java:923) 
~[fury-core-0.5.1.jar!/:0.5.1]
           at org.apache.fury.Fury.readRef(Fury.java:825) 
~[fury-core-0.5.1.jar!/:0.5.1]
           at org.apache.fury.Fury.deserialize(Fury.java:760) 
~[fury-core-0.5.1.jar!/:0.5.1]
           at org.apache.fury.Fury.deserialize(Fury.java:682) 
~[fury-core-0.5.1.jar!/:0.5.1]
           at 
org.apache.fury.pool.ThreadPoolFury.lambda$deserialize$9(ThreadPoolFury.java:124)
 ~[fury-core-0.5.1.jar!/:0.5.1]
           at 
org.apache.fury.pool.ThreadPoolFury.execute(ThreadPoolFury.java:73) 
~[fury-core-0.5.1.jar!/:0.5.1]
           at 
org.apache.fury.pool.ThreadPoolFury.deserialize(ThreadPoolFury.java:124) 
~[fury-core-0.5.1.jar!/:0.5.1]
   ```
   
   
   
   ### What did you expect to see?
   
   Backward compatibility with 0.5.x
   
   ### What did you see instead?
   
   Fury 0.5.1 produces similar bytes, but with one difference:
   `byte[] bytes0_5_1 = new byte[] {2, -1, **-80**, 2, 0, 0, 0, 0, 0, 0, 0, 0, 
0, 0, 0, 0, 0, 0, 0, -3, -3};`
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit a PR?
   
   - [ ] I'm willing to submit a PR!


-- 
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: commits-unsubscr...@fury.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@fury.apache.org
For additional commands, e-mail: commits-h...@fury.apache.org

Reply via email to