Hisoka-X commented on code in PR #7241: URL: https://github.com/apache/seatunnel/pull/7241#discussion_r1686050516
########## seatunnel-engine/seatunnel-engine-server/src/main/java/org/apache/seatunnel/engine/server/dag/physical/PhysicalVertex.java: ########## @@ -485,6 +485,8 @@ private void resetExecutionState() { () -> { updateStateTimestamps(ExecutionState.CREATED); runningJobStateIMap.set(taskGroupLocation, ExecutionState.CREATED); + // reset the errorByPhysicalVertex + errorByPhysicalVertex = new AtomicReference<>(); Review Comment: https://github.com/apache/seatunnel/blob/4b3af9bef4e1753838a7750e86bde71bae8562ae/seatunnel-e2e/seatunnel-e2e-common/src/test/java/org/apache/seatunnel/e2e/sink/inmemory/InMemorySinkWriter.java#L80 `InMemorySinkWriter` is a good choice because it can construct different error messages each time, so you can check the error messages to see if the changes are effective. -- 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: commits-unsubscr...@seatunnel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org