You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by bo...@apache.org on 2016/03/02 19:32:36 UTC

[1/3] storm git commit: STORM-1592: clojure code calling into Utils.exitProcess throws ClassCastException

Repository: storm
Updated Branches:
  refs/heads/master 906fcea61 -> df54280e3


STORM-1592: clojure code calling into Utils.exitProcess throws ClassCastException


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

Branch: refs/heads/master
Commit: a6bcfbc45752fde31b27377893e630509b1b193f
Parents: 87e3c24
Author: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Authored: Tue Mar 1 10:58:45 2016 -0600
Committer: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Committed: Tue Mar 1 10:58:45 2016 -0600

----------------------------------------------------------------------
 storm-core/src/jvm/org/apache/storm/utils/Utils.java | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/a6bcfbc4/storm-core/src/jvm/org/apache/storm/utils/Utils.java
----------------------------------------------------------------------
diff --git a/storm-core/src/jvm/org/apache/storm/utils/Utils.java b/storm-core/src/jvm/org/apache/storm/utils/Utils.java
index bc12e8e..e04600a 100644
--- a/storm-core/src/jvm/org/apache/storm/utils/Utils.java
+++ b/storm-core/src/jvm/org/apache/storm/utils/Utils.java
@@ -1742,13 +1742,8 @@ public class Utils {
         return UUID.randomUUID().toString();
     }
 
-    public static void exitProcess (int val, Object... msg) {
-        StringBuilder errorMessage = new StringBuilder();
-        errorMessage.append("Halting process: ");
-        for (Object oneMessage: msg) {
-            errorMessage.append(oneMessage);
-        }
-        String combinedErrorMessage = errorMessage.toString();
+    public static void exitProcess (int val, String msg) {
+        String combinedErrorMessage = "Halting process: " + msg;
         LOG.error(combinedErrorMessage, new RuntimeException(combinedErrorMessage));
         Runtime.getRuntime().exit(val);
     }


[3/3] storm git commit: Added STORM-1592 to Changelog

Posted by bo...@apache.org.
Added STORM-1592 to Changelog


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

Branch: refs/heads/master
Commit: df54280e333e5bf29cc4bbab7a29d9f3b245f4fd
Parents: cfeaba4
Author: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Authored: Wed Mar 2 12:23:48 2016 -0600
Committer: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Committed: Wed Mar 2 12:23:48 2016 -0600

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


http://git-wip-us.apache.org/repos/asf/storm/blob/df54280e/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a87aa6b..b666beb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
 ## 2.0.0
+ * STORM-1592: clojure code calling into Utils.exitProcess throws ClassCastException
  * STORM-1579: Fix NoSuchFileException when running tests in storm-core
  * STORM-1244: port backtype.storm.command.upload-credentials to java
  * STORM-1245: port backtype.storm.daemon.acker to java


[2/3] storm git commit: Merge branch 'STORM-1592' of https://github.com/revans2/incubator-storm into STORM-1592

Posted by bo...@apache.org.
Merge branch 'STORM-1592' of https://github.com/revans2/incubator-storm into STORM-1592

STORM-1592: clojure code calling into Utils.exitProcess throws ClassCastException


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

Branch: refs/heads/master
Commit: cfeaba42c0c4c3853efd76b6b5424648e3e535ce
Parents: 906fcea a6bcfbc
Author: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Authored: Wed Mar 2 12:23:29 2016 -0600
Committer: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Committed: Wed Mar 2 12:23:29 2016 -0600

----------------------------------------------------------------------
 storm-core/src/jvm/org/apache/storm/utils/Utils.java | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)
----------------------------------------------------------------------