Github user HeartSaVioR commented on a diff in the pull request:
https://github.com/apache/storm/pull/2728#discussion_r196572238
--- 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 --
Thanks for the details. Now I can understand the issue clearly.
---