sebastienviale commented on code in PR #17942:
URL: https://github.com/apache/kafka/pull/17942#discussion_r2210219395


##########
streams/src/main/java/org/apache/kafka/streams/processor/internals/ProcessorNode.java:
##########
@@ -220,11 +221,11 @@ public void process(final Record<KIn, VIn> record) {
                 internalProcessorContext.recordContext().sourceRawValue()
             );
 
-            final ProcessingExceptionHandler.ProcessingHandlerResponse 
response;
+            final ProcessingExceptionHandler.Response 
processingExceptionResponse;
             try {
-                response = Objects.requireNonNull(
-                    processingExceptionHandler.handle(errorHandlerContext, 
record, processingException),
-                    "Invalid ProductionExceptionHandler response."
+                processingExceptionResponse = Objects.requireNonNull(

Review Comment:
   fixed to response



##########
streams/src/main/java/org/apache/kafka/streams/processor/internals/ProcessorNode.java:
##########
@@ -220,11 +221,11 @@ public void process(final Record<KIn, VIn> record) {
                 internalProcessorContext.recordContext().sourceRawValue()
             );
 
-            final ProcessingExceptionHandler.ProcessingHandlerResponse 
response;
+            final ProcessingExceptionHandler.Response 
processingExceptionResponse;
             try {
-                response = Objects.requireNonNull(
-                    processingExceptionHandler.handle(errorHandlerContext, 
record, processingException),
-                    "Invalid ProductionExceptionHandler response."
+                processingExceptionResponse = Objects.requireNonNull(
+                    
processingExceptionHandler.handleError(errorHandlerContext, record, 
processingException),
+                    "Invalid ProcessingExceptionResponse response."

Review Comment:
   question here: 
https://github.com/apache/kafka/pull/17942#discussion_r2210180993



-- 
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: jira-unsubscr...@kafka.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to