79775566

Date: 2025-09-26 07:12:59
Score: 1.5
Natty:
Report link

Just in case someone come to this page on the same reason as I do. I migrated application to Java 17, but my services on Ignite are still on Java 11 for some reason. Calling that service throws an exception "Ignite failed to process request [142]: Failed to deserialize object [typeId=-1688195747]"

The reason was that I'm using stream method toList() in my Java 17 app and call service on Ignite with argument that contains such List. Replacing with collect(Colelctors.toList()) solved the issue.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Михаил Байков