Repository: incubator-zeppelin Updated Branches: refs/heads/master 3341bf0dc -> e32df9c4f
Fix the bug of confVars of long value The ConfVars function of long value, the type should be VarType.Long Author: hongsibao 00221460 <[email protected]> Closes #153 from matadorhong/bug_ConfVar and squashes the following commits: 1125501 [hongsibao 00221460] Fix the bug of confVars of long value Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/e32df9c4 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/e32df9c4 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/e32df9c4 Branch: refs/heads/master Commit: e32df9c4f04b918b171031a72c0dd05ce425b2ec Parents: 3341bf0 Author: hongsibao 00221460 <[email protected]> Authored: Mon Jul 13 11:30:15 2015 +0800 Committer: Lee moon soo <[email protected]> Committed: Wed Jul 15 10:48:39 2015 -0700 ---------------------------------------------------------------------- .../main/java/org/apache/zeppelin/conf/ZeppelinConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/e32df9c4/zeppelin-zengine/src/main/java/org/apache/zeppelin/conf/ZeppelinConfiguration.java ---------------------------------------------------------------------- diff --git a/zeppelin-zengine/src/main/java/org/apache/zeppelin/conf/ZeppelinConfiguration.java b/zeppelin-zengine/src/main/java/org/apache/zeppelin/conf/ZeppelinConfiguration.java index a56b07b..8f04f9a 100644 --- a/zeppelin-zengine/src/main/java/org/apache/zeppelin/conf/ZeppelinConfiguration.java +++ b/zeppelin-zengine/src/main/java/org/apache/zeppelin/conf/ZeppelinConfiguration.java @@ -458,7 +458,7 @@ public class ZeppelinConfiguration extends XMLConfiguration { this.floatValue = -1; this.longValue = longValue; this.booleanValue = false; - this.type = VarType.INT; + this.type = VarType.LONG; } ConfVars(String varName, float floatValue) {
