Github user srdo commented on a diff in the pull request:
https://github.com/apache/storm/pull/2734#discussion_r197652495
--- Diff: storm-server/src/main/java/org/apache/storm/LocalCluster.java ---
@@ -196,6 +196,9 @@ private LocalCluster(Builder builder) throws Exception {
this.tmpDirs.add(nimbusTmp);
stormHomeBackup = System.getProperty(ConfigUtils.STORM_HOME);
TmpPath stormHome = new TmpPath();
+ if (!stormHome.getFile().mkdirs()) {
--- End diff --
Yes, it is. Do you want me to put this into a STORM-3116 PR, or what do you
mean?
---