ableegoldman commented on a change in pull request #11405:
URL: https://github.com/apache/kafka/pull/11405#discussion_r732509771



##########
File path: 
streams/src/main/java/org/apache/kafka/streams/errors/StreamsException.java
##########
@@ -25,15 +28,45 @@
 
     private final static long serialVersionUID = 1L;
 
+    private TaskId taskId = null;
+
     public StreamsException(final String message) {
         super(message);
     }
 
+    public StreamsException(final String message, final TaskId taskId) {
+        this(message);
+        this.taskId = taskId;
+    }

Review comment:
       Done, thanks!




-- 
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