Replies: 1 comment 5 replies
-
Good point, but However, adding the Not using an I will convert this to an issue; to remove the |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Actually in the class org.springframework.kafka.support.serializer.JsonDeserializer when an error happen it is handled like this:
which I think is very inefficient as each byte of the payload is duplicated as a long array of numbers written as a String in the exception message. In my humble opinion the Arrays.toString(data) should be removed from the message and the original data[] object should be added to the SerializationException class.
Beta Was this translation helpful? Give feedback.
All reactions