You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by ka...@apache.org on 2016/09/23 01:59:24 UTC

[2/4] storm git commit: STORM-1664: Remove unnecessary or

STORM-1664: Remove unnecessary or


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

Branch: refs/heads/1.x-branch
Commit: 9bff5f429102b3233ed4195e12f5fecf346212c7
Parents: d398bde
Author: Stig Rohde D�ssing <st...@gmail.com>
Authored: Wed Mar 30 22:13:52 2016 +0200
Committer: Jungtaek Lim <ka...@gmail.com>
Committed: Fri Sep 23 10:58:35 2016 +0900

----------------------------------------------------------------------
 storm-core/src/clj/org/apache/storm/testing4j.clj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/9bff5f42/storm-core/src/clj/org/apache/storm/testing4j.clj
----------------------------------------------------------------------
diff --git a/storm-core/src/clj/org/apache/storm/testing4j.clj b/storm-core/src/clj/org/apache/storm/testing4j.clj
index a0bbf3c..b2acffc 100644
--- a/storm-core/src/clj/org/apache/storm/testing4j.clj
+++ b/storm-core/src/clj/org/apache/storm/testing4j.clj
@@ -80,7 +80,7 @@
   `(let [supervisors# (or (.getSupervisors ~mkClusterParam) 2)
          ports-per-supervisor# (or (.getPortsPerSupervisor ~mkClusterParam) 3)
          daemon-conf# (or (.getDaemonConf ~mkClusterParam) {})
-         nimbus-daemon# (or (.isNimbusDaemon ~mkClusterParam) false)]
+         nimbus-daemon# (.isNimbusDaemon ~mkClusterParam)]
      (~cluster-type [cluster# :supervisors supervisors#
                      :ports-per-supervisor ports-per-supervisor#
                      :daemon-conf daemon-conf#