sebastienviale commented on code in PR #16432:
URL: https://github.com/apache/kafka/pull/16432#discussion_r1694826854
##########
streams/src/main/java/org/apache/kafka/streams/errors/DeserializationExceptionHandler.java:
##########
@@ -37,11 +37,27 @@ public interface DeserializationExceptionHandler extends
Configurable {
* @param context processor context
* @param record record that failed deserialization
* @param exception the actual exception
+ * @deprecated Please {@link #handle(ErrorHandlerContext, ConsumerRecord,
Exception)}
+ */
+ @Deprecated
+ default DeserializationHandlerResponse handle(final ProcessorContext
context,
+ final ConsumerRecord<byte[],
byte[]> record,
+ final Exception exception) {
+ throw new UnsupportedOperationException();
Review Comment:
done KIP has been updated
--
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]