lujiefsi commented on a change in pull request #5066: URL: https://github.com/apache/cloudstack/pull/5066#discussion_r664186558
########## File path: core/src/main/java/com/cloud/storage/JavaStorageLayer.java ########## @@ -178,18 +183,25 @@ public long getSize(String path) { } @Override - public File createUniqDir() { + public File createUniqDir() throws IOException { String dirName = System.getProperty("java.io.tmpdir"); if (dirName != null) { File dir = new File(dirName); if (dir.exists()) { + if (isWorldReadable(dir)) { + if (dir.getAbsolutePath().equals("/tmp")) { Review comment: sorry for my mis-undstand -- 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: commits-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org