STORM-188. Allow user to specifiy full configuration path when running storm command.
Project: http://git-wip-us.apache.org/repos/asf/storm/repo Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/0c659c26 Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/0c659c26 Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/0c659c26 Branch: refs/heads/master Commit: 0c659c26369b376f30951f779882df2645a0bee0 Parents: 9a2c412 Author: Sriharsha Chintalapani <[email protected]> Authored: Wed Apr 1 08:45:33 2015 -0700 Committer: Sriharsha Chintalapani <[email protected]> Committed: Wed Apr 1 08:45:33 2015 -0700 ---------------------------------------------------------------------- storm-core/src/jvm/backtype/storm/utils/Utils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/storm/blob/0c659c26/storm-core/src/jvm/backtype/storm/utils/Utils.java ---------------------------------------------------------------------- diff --git a/storm-core/src/jvm/backtype/storm/utils/Utils.java b/storm-core/src/jvm/backtype/storm/utils/Utils.java index 7e2d97b..b99ee71 100644 --- a/storm-core/src/jvm/backtype/storm/utils/Utils.java +++ b/storm-core/src/jvm/backtype/storm/utils/Utils.java @@ -138,7 +138,7 @@ public class Utils { public static Map findAndReadConfigFile(String name, boolean mustExist) { InputStream in = null; - Boolean confFileEmpty = false; + boolean confFileEmpty = false; try { in = getConfigFileInputStream(name); if (null != in) {
