You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by sr...@apache.org on 2017/07/26 19:48:57 UTC

[1/3] storm git commit: STORM-2659: Add daemon.name variable to storm.cmd to fix log4j logging

Repository: storm
Updated Branches:
  refs/heads/1.x-branch 0d6e4cdee -> d128cd9a8


STORM-2659: Add daemon.name variable to storm.cmd to fix log4j logging


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/02880c08
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/02880c08
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/02880c08

Branch: refs/heads/1.x-branch
Commit: 02880c08fd51f2c65779e0a176eb003f84d4e281
Parents: 2fe66dc
Author: Stig Rohde Døssing <sr...@apache.org>
Authored: Tue Jul 25 22:01:04 2017 +0200
Committer: Stig Rohde Døssing <sr...@apache.org>
Committed: Tue Jul 25 22:01:04 2017 +0200

----------------------------------------------------------------------
 bin/storm.cmd | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/02880c08/bin/storm.cmd
----------------------------------------------------------------------
diff --git a/bin/storm.cmd b/bin/storm.cmd
index 23d65c6..32183c8 100644
--- a/bin/storm.cmd
+++ b/bin/storm.cmd
@@ -145,6 +145,7 @@
 
 :drpc
   set CLASS=org.apache.storm.daemon.drpc
+  set STORM_OPTS=%STORM_OPTS% -Ddaemon.name=drpc
   "%JAVA%" -client -Dstorm.options= -Dstorm.conf.file= -cp "%CLASSPATH%" org.apache.storm.command.config_value drpc.childopts > %CMD_TEMP_FILE%
   FOR /F "delims=" %%i in (%CMD_TEMP_FILE%) do (
      FOR /F "tokens=1,* delims= " %%a in ("%%i") do (
@@ -171,6 +172,7 @@
 
 :logviewer
   set CLASS=org.apache.storm.daemon.logviewer
+  set STORM_OPTS=%STORM_OPTS% -Ddaemon.name=logviewer
    "%JAVA%" -client -Dstorm.options= -Dstorm.conf.file= -cp "%CLASSPATH%" org.apache.storm.command.config_value logviewer.childopts > %CMD_TEMP_FILE%
   FOR /F "delims=" %%i in (%CMD_TEMP_FILE%) do (
      FOR /F "tokens=1,* delims= " %%a in ("%%i") do (
@@ -183,6 +185,7 @@
 
 :nimbus
   set CLASS=org.apache.storm.daemon.nimbus
+  set STORM_OPTS=%STORM_OPTS% -Ddaemon.name=nimbus
   "%JAVA%" -client -Dstorm.options= -Dstorm.conf.file= -cp "%CLASSPATH%" org.apache.storm.command.config_value nimbus.childopts > %CMD_TEMP_FILE%
   FOR /F "delims=" %%i in (%CMD_TEMP_FILE%) do (
      FOR /F "tokens=1,* delims= " %%a in ("%%i") do (
@@ -215,6 +218,7 @@
   
 :supervisor
   set CLASS=org.apache.storm.daemon.supervisor.Supervisor
+  set STORM_OPTS=%STORM_OPTS% -Ddaemon.name=supervisor
   "%JAVA%" -client -Dstorm.options= -Dstorm.conf.file= -cp "%CLASSPATH%" org.apache.storm.command.config_value supervisor.childopts > %CMD_TEMP_FILE%
   FOR /F "delims=" %%i in (%CMD_TEMP_FILE%) do (
      FOR /F "tokens=1,* delims= " %%a in ("%%i") do (
@@ -227,6 +231,7 @@
 
 :ui
   set CLASS=org.apache.storm.ui.core
+  set STORM_OPTS=%STORM_OPTS% -Ddaemon.name=ui
   set CLASSPATH=%CLASSPATH%;%STORM_HOME%
   "%JAVA%" -client -Dstorm.options= -Dstorm.conf.file= -cp "%CLASSPATH%" org.apache.storm.command.config_value ui.childopts > %CMD_TEMP_FILE%
   FOR /F "delims=" %%i in (%CMD_TEMP_FILE%) do (


[3/3] storm git commit: Changelog: STORM-2659

Posted by sr...@apache.org.
Changelog: STORM-2659


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/d128cd9a
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/d128cd9a
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/d128cd9a

Branch: refs/heads/1.x-branch
Commit: d128cd9a863d7bf0e9674a99971418f3d9379fc6
Parents: 3018f37
Author: Stig Rohde Døssing <sr...@apache.org>
Authored: Wed Jul 26 21:46:59 2017 +0200
Committer: Stig Rohde Døssing <sr...@apache.org>
Committed: Wed Jul 26 21:46:59 2017 +0200

----------------------------------------------------------------------
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/d128cd9a/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e3faf6f..1d84ceb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,6 +20,7 @@
  * STORM-2482: Refactor the Storm auto credential plugins to be more usable
 
 ## 1.1.1
+ * STORM-2659: Add daemon.name variable to storm.cmd to fix log4j logging
  * STORM-2652: fix error in open method of JmsSpout
  * STORM-2645: Update storm.py to be python3 compatible
  * STORM-2621: add tuple_population metric


[2/3] storm git commit: Merge branch 'STORM-2659' of https://github.com/srdo/storm into STORM-2659-1.x-merge

Posted by sr...@apache.org.
Merge branch 'STORM-2659' of https://github.com/srdo/storm into STORM-2659-1.x-merge


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/3018f37e
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/3018f37e
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/3018f37e

Branch: refs/heads/1.x-branch
Commit: 3018f37efe5c1d25427f2dc43c84582ba256a8de
Parents: 0d6e4cd 02880c0
Author: Stig Rohde Døssing <sr...@apache.org>
Authored: Wed Jul 26 21:46:36 2017 +0200
Committer: Stig Rohde Døssing <sr...@apache.org>
Committed: Wed Jul 26 21:46:36 2017 +0200

----------------------------------------------------------------------
 bin/storm.cmd | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------