WencongLiu commented on code in PR #22341:
URL: https://github.com/apache/flink/pull/22341#discussion_r1264365814


##########
flink-runtime/src/test/java/org/apache/flink/runtime/highavailability/FileSystemJobResultStoreContractTest.java:
##########
@@ -35,6 +35,6 @@ public class FileSystemJobResultStoreContractTest implements 
JobResultStoreContr
     @Override
     public JobResultStore createJobResultStore() throws IOException {
         Path path = new Path(temporaryFolder.toURI());
-        return new FileSystemJobResultStore(path.getFileSystem(), path, false);
+        return new FileSystemJobResultStore(path.getFileSystem(), path, false, 
Runnable::run);

Review Comment:
   Fixed.



##########
flink-runtime/src/test/java/org/apache/flink/runtime/highavailability/FileSystemJobResultStoreFileOperationsTest.java:
##########
@@ -54,11 +58,19 @@ public class FileSystemJobResultStoreFileOperationsTest {
 
     private Path basePath;
 
+    private ExecutorService ioExecutor;
+
     @BeforeEach
     public void setupTest() throws IOException {
         basePath = new Path(temporaryFolder.toURI());
+        ioExecutor = Executors.newSingleThreadExecutor();

Review Comment:
   Fixed.



-- 
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]

Reply via email to