Github user HeartSaVioR commented on a diff in the pull request:
https://github.com/apache/storm/pull/2728#discussion_r196556394
--- Diff: storm-server/src/main/java/org/apache/storm/LocalCluster.java ---
@@ -193,6 +194,10 @@ private LocalCluster(Builder builder) throws Exception
{
this.supervisors = new ArrayList<>();
TmpPath nimbusTmp = new TmpPath();
this.tmpDirs.add(nimbusTmp);
+ stormHomeBackup = System.getProperty(ConfigUtils.STORM_HOME);
--- End diff --
I'm not 100% sure that we need to use temporary directory for storm home
while launching local cluster. Did you find any issue regarding this?
---