dmvk commented on a change in pull request #18610:
URL: https://github.com/apache/flink/pull/18610#discussion_r818782264
##########
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:
since we override the `execute(...)` method (which is the only one used
by the coordinator), how exactly do we leverage that?
--
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]