sebastienviale commented on PR #16745:
URL: https://github.com/apache/kafka/pull/16745#issuecomment-2259948807
I just notice a nit in ProductionExceptionHandler
* @param record the record that failed to serialize
* @param exception the exception that occurred during serialization
* @deprecated Since 3.9. Use {@link #handle(ErrorHandlerContext,
ProducerRecord, Exception)} instead.
*/
@Deprecated
default ProductionExceptionHandlerResponse
handleSerializationException(final ProducerRecord record,
final Exception exception) {
return ProductionExceptionHandlerResponse.FAIL;
}
should be
* @deprecated Since 3.9. Use {@link
#handleSerializationException(ErrorHandlerContext, ProducerRecord, Exception,
SerializationExceptionOrigin)} instead.
--
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]