dmvk commented on a change in pull request #18610:
URL: https://github.com/apache/flink/pull/18610#discussion_r818828630
##########
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:
That part I understand. What I miss is where do we actually create the
thread (call the `#newThread` method), since we seem to be executing the
`Runnable` passed to the `execute(...)` directly?
--
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]