Github user ggevay commented on a diff in the pull request:
https://github.com/apache/flink/pull/3511#discussion_r138904204
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/taskexecutor/TaskManagerConfiguration.java
---
@@ -115,6 +115,13 @@ public Configuration getConfiguration() {
return tmpDirectories;
}
+ public String getFirstTmpDirectory(){
--- End diff --
We can remove this method, since it became unused when we changed to
generating the code into just a string instead of a temporary file.
---