jamesnetherton commented on code in PR #8684:
URL: https://github.com/apache/camel-quarkus/pull/8684#discussion_r3334357316
##########
extensions-support/debezium/deployment/src/main/java/org/apache/camel/quarkus/support/debezium/deployment/DebeziumSupportProcessor.java:
##########
@@ -144,6 +142,18 @@ void reflectiveClasses(CombinedIndexBuildItem
combinedIndex, BuildProducer<Refle
SchemaTopicNamingStrategy.class,
FileSchemaHistory.class)
.build());
+
+ reflectiveClasses.produce(ReflectiveClassBuildItem.builder(
+ "org.apache.kafka.connect.converters.ByteArrayConverter",
+ "org.apache.kafka.connect.converters.BooleanConverter",
+ "org.apache.kafka.connect.converters.DoubleConverter",
+ "org.apache.kafka.connect.converters.FloatConverter",
+ "org.apache.kafka.connect.converters.IntegerConverter",
+ "org.apache.kafka.connect.converters.LongConverter",
+ "org.apache.kafka.connect.converters.ShortConverter")
+ .constructors()
+ .methods()
+ .build());
Review Comment:
Now that I think about it - probably a better way for this is to search the
Jandex index for all classes that implement
`org.apache.kafka.connect.storage.Converter`. That way we don't need to
maintain a manual list of types.
--
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]