chaokunyang commented on issue #2275:
URL: https://github.com/apache/fory/issues/2275#issuecomment-3190484443

   @julianhowarth `readFields(` is pretty normal, it seems somethign goes wrong 
in:
   ```java
     private void readFields1(MemoryBuffer memoryBuffer1, 
com.endeavorstreaming.vesper.content_engine.common.domain.video.Video video1) {
         ClassResolver classResolver = this.classResolver;
         if ((memoryBuffer1.readByte() != ((byte)-3))) {
             Object object = classResolver.readClassInfo(memoryBuffer1, 
adInsertionClassInfo).getSerializer().read(memoryBuffer1);
             Platform.putObject(video1, 80L, 
((com.endeavorstreaming.vesper.content_engine.common.domain.video.AdInsertion)object));
         } else {
             Platform.putObject(video1, 80L, null);
         }
         if ((memoryBuffer1.readByte() != ((byte)-3))) {
             Object object1 = classResolver.readClassInfo(memoryBuffer1, 
videoArtClassInfo).getSerializer().read(memoryBuffer1);
             Platform.putObject(video1, 76L, 
((com.endeavorstreaming.vesper.content_engine.common.domain.video.VideoArt)object1));
         } else {
             Platform.putObject(video1, 76L, null);
         }
   ```
   
   Mostly something goes wrong in `classResolver.readClassInfo(memoryBuffer1, 
videoArtClassInfo).getSerializer().read(memoryBuffer1)`. Could you debug into 
this call to see what happens?


-- 
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]

Reply via email to