echauchot commented on a change in pull request #18610:
URL: https://github.com/apache/flink/pull/18610#discussion_r818817888



##########
File path: 
flink-test-utils-parent/flink-test-utils-junit/src/main/java/org/apache/flink/core/testutils/ManuallyTriggeredScheduledExecutorService.java
##########
@@ -54,6 +57,14 @@
 
     private boolean shutdown;
 
+    public ManuallyTriggeredScheduledExecutorService() {
+        super(DEFAULT_NB_THREADS);
+    }
+
+    public ManuallyTriggeredScheduledExecutorService(int nbThreads, 
ThreadFactory factory) {
+        super(nbThreads, factory);

Review comment:
       `CoordinatorExecutorThreadFactory#newThread()` sets the exception 
handler of the created thread.   The JVM calls 
`Thread#getUncaughtExceptionHandler()` when the threads raises an exception.




-- 
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: issues-unsubscr...@flink.apache.org

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


Reply via email to