Return-Path: X-Original-To: apmail-zeppelin-commits-archive@minotaur.apache.org Delivered-To: apmail-zeppelin-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0466518148 for ; Wed, 15 Jul 2015 17:48:54 +0000 (UTC) Received: (qmail 96431 invoked by uid 500); 15 Jul 2015 17:48:53 -0000 Delivered-To: apmail-zeppelin-commits-archive@zeppelin.apache.org Received: (qmail 96391 invoked by uid 500); 15 Jul 2015 17:48:53 -0000 Mailing-List: contact commits-help@zeppelin.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zeppelin.incubator.apache.org Delivered-To: mailing list commits@zeppelin.incubator.apache.org Received: (qmail 96382 invoked by uid 99); 15 Jul 2015 17:48:53 -0000 Received: from Unknown (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Jul 2015 17:48:53 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 7CACF1A70AF for ; Wed, 15 Jul 2015 17:48:53 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.791 X-Spam-Level: * X-Spam-Status: No, score=1.791 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, T_RP_MATCHES_RCVD=-0.01, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id EmWry3UqbJSy for ; Wed, 15 Jul 2015 17:48:44 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with SMTP id 8D46C43DDB for ; Wed, 15 Jul 2015 17:48:44 +0000 (UTC) Received: (qmail 96146 invoked by uid 99); 15 Jul 2015 17:48:44 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Jul 2015 17:48:44 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0F974E0967; Wed, 15 Jul 2015 17:48:44 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: moon@apache.org To: commits@zeppelin.incubator.apache.org Message-Id: <39db8a979da24fcb8dc5f1b1d9f4d1c4@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: incubator-zeppelin git commit: Fix the bug of confVars of long value Date: Wed, 15 Jul 2015 17:48:44 +0000 (UTC) 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 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 Authored: Mon Jul 13 11:30:15 2015 +0800 Committer: Lee moon soo 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) {