Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 8CD7D200B44 for ; Thu, 14 Jul 2016 18:26:23 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 8BB6B160A63; Thu, 14 Jul 2016 16:26:23 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id D630F160A60 for ; Thu, 14 Jul 2016 18:26:22 +0200 (CEST) Received: (qmail 68135 invoked by uid 500); 14 Jul 2016 16:26:22 -0000 Mailing-List: contact commits-help@ambari.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ambari-dev@ambari.apache.org Delivered-To: mailing list commits@ambari.apache.org Received: (qmail 68126 invoked by uid 99); 14 Jul 2016 16:26:22 -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; Thu, 14 Jul 2016 16:26:22 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id EF736E383A; Thu, 14 Jul 2016 16:26:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jonathanhurley@apache.org To: commits@ambari.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: ambari git commit: AMBARI-17697 - Hive Restart Failed During RU Due To Missing SQL JAR (part2) (jonathanhurley) Date: Thu, 14 Jul 2016 16:26:21 +0000 (UTC) archived-at: Thu, 14 Jul 2016 16:26:23 -0000 Repository: ambari Updated Branches: refs/heads/branch-2.4 8ca3d7dd3 -> b55e52433 AMBARI-17697 - Hive Restart Failed During RU Due To Missing SQL JAR (part2) (jonathanhurley) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/b55e5243 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/b55e5243 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/b55e5243 Branch: refs/heads/branch-2.4 Commit: b55e524338d094323805ea29bdd05d48e8df27f4 Parents: 8ca3d7d Author: Jonathan Hurley Authored: Thu Jul 14 12:21:04 2016 -0400 Committer: Jonathan Hurley Committed: Thu Jul 14 12:26:16 2016 -0400 ---------------------------------------------------------------------- .../HIVE/0.12.0.2.0/package/scripts/params_linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/b55e5243/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/params_linux.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/params_linux.py b/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/params_linux.py index c7ed801..6bb2cbc 100644 --- a/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/params_linux.py +++ b/ambari-server/src/main/resources/common-services/HIVE/0.12.0.2.0/package/scripts/params_linux.py @@ -81,7 +81,7 @@ downgrade_from_version = default("/commandParams/downgrade_from_version", None) # determine which version to use for checking stack features; version is the most accurate but # may not always be available (especially on first install of the cluster) -version_for_stack_feature_checks = version if not None else stack_version_unformatted +version_for_stack_feature_checks = version if version is not None else stack_version_unformatted # Upgrade direction upgrade_direction = default("/commandParams/upgrade_direction", None)