We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Our tests for jackson-avro are passing which suggests that the Camel component functionality is likely ok.
But, there are some code paths in the AvroMapper that invoke APIs removed / modified in Avro 1.12.x:
https://github.com/FasterXML/jackson-dataformats-binary/blob/jackson-dataformats-binary-2.18.0/avro/src/main/java/com/fasterxml/jackson/dataformat/avro/AvroMapper.java#L229-L273
Which leads to NoSuchMethodError if used:
NoSuchMethodError
Caused by: java.lang.NoSuchMethodError: 'org.apache.avro.Schema$Parser org.apache.avro.Schema$Parser.setValidate(boolean)' at com.fasterxml.jackson.dataformat.avro.AvroMapper.schemaFrom(AvroMapper.java:257)
The text was updated successfully, but these errors were encountered:
Work around issues for avro-jackson compatibility with Avro 1.12.x
141250a
Fixes apache#6721
af9afc3
b1c39b7
3ebbabc
Fixes #6721
b09f42f
244920c
No branches or pull requests
Bug description
Our tests for jackson-avro are passing which suggests that the Camel component functionality is likely ok.
But, there are some code paths in the AvroMapper that invoke APIs removed / modified in Avro 1.12.x:
https://github.com/FasterXML/jackson-dataformats-binary/blob/jackson-dataformats-binary-2.18.0/avro/src/main/java/com/fasterxml/jackson/dataformat/avro/AvroMapper.java#L229-L273
Which leads to
NoSuchMethodError
if used:The text was updated successfully, but these errors were encountered: