Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/6399#discussion_r204719730
--- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/taskexecutor/TaskExecutorITCase.java
---
@@ -127,7 +132,7 @@ public void testSlotAllocation() throws Exception {
TestingUtils.infiniteTime());
final File[] taskExecutorLocalStateRootDirs =
- new File[]{new File(System.getProperty("java.io.tmpdir"), "localRecovery")};
+ new File[]{ tempFolder.newFolder("localRecovery") };
--- End diff --
same issue as in `JarFileCreatorTest`
---
|