laurentgo opened a new pull request #2240: URL: https://github.com/apache/drill/pull/2240
# [DRILL-7936](https://issues.apache.org/jira/browse/DRILL-7936): Remove usage of Guava Files#createTempDir method ## Description Guava's `Files#createTempDir()` method has some security issues, and since better alternatives exist (including Java 7 `Files#createTempDirectory(String)` method), the function has been deprecated in Guava 30.0 (but the security issues haven't been addressed). Introduce a drop-in replacement for this method in `DrillFileUtils` based on the Java7 Files API and replace usage of the Guava method with the new method in the codebase. ## Documentation N/A ## Testing Unit tests run locally -- 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. For queries about this service, please contact Infrastructure at: [email protected]
