echauchot commented on a change in pull request #18610:
URL: https://github.com/apache/flink/pull/18610#discussion_r819459867
##########
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:
you're right, the context as a reference to the factory and calls the
exception handler directly. No more need for that change. Reverted.
--
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]