You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by pt...@apache.org on 2015/05/07 17:29:53 UTC

[1/2] storm git commit: fix storm.cmd to evaluate 'shift' correctly with 'storm jar'

Repository: storm
Updated Branches:
  refs/heads/0.9.x-branch c248dd98f -> a480eab7b


fix storm.cmd to evaluate 'shift' correctly with 'storm jar'


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

Branch: refs/heads/0.9.x-branch
Commit: ed5a51f679d38281a62f2a9ac15c13853bc4c577
Parents: c248dd9
Author: Jungtaek Lim <ka...@gmail.com>
Authored: Mon Apr 6 23:53:31 2015 +0900
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Thu May 7 11:24:11 2015 -0400

----------------------------------------------------------------------
 bin/storm.cmd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/ed5a51f6/bin/storm.cmd
----------------------------------------------------------------------
diff --git a/bin/storm.cmd b/bin/storm.cmd
index 0cf6b52..bfb4d93 100644
--- a/bin/storm.cmd
+++ b/bin/storm.cmd
@@ -70,11 +70,11 @@
     set CLASSPATH=%CLASSPATH%;%2
     set CLASS=%3
     set args=%4
-    shift
+    goto start
     :start
+    shift
     if [%4] == [] goto done
     set args=%args% %4
-    shift
     goto start
 
     :done


[2/2] storm git commit: update changelog for version 0.9.5

Posted by pt...@apache.org.
update changelog for version 0.9.5


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

Branch: refs/heads/0.9.x-branch
Commit: a480eab7bac6a3f754da223a30e495ac5480eeba
Parents: ed5a51f
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Thu May 7 11:26:11 2015 -0400
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Thu May 7 11:26:11 2015 -0400

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


http://git-wip-us.apache.org/repos/asf/storm/blob/a480eab7/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ad81e43..94e0f4c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+## 0.9.5
+ * STORM-745: fix storm.cmd to evaluate 'shift' correctly with 'storm jar'
+
 ## 0.9.4
  * STORM-559: ZkHosts in README should use 2181 as port.
  * STORM-682: supervisor should handle worker state corruption gracefully.