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 BD745200C29 for ; Tue, 28 Feb 2017 14:28:44 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id BC098160B7C; Tue, 28 Feb 2017 13:28:44 +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 38B06160B6A for ; Tue, 28 Feb 2017 14:28:44 +0100 (CET) Received: (qmail 980 invoked by uid 500); 28 Feb 2017 13:28:43 -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 971 invoked by uid 99); 28 Feb 2017 13:28:43 -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; Tue, 28 Feb 2017 13:28:43 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 513DDDFDB1; Tue, 28 Feb 2017 13:28:43 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: gnagar@apache.org To: commits@ambari.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: ambari git commit: AMBARI-20224. HiveView2.0: Logs tab is always empty.(gauravn7) Date: Tue, 28 Feb 2017 13:28:43 +0000 (UTC) archived-at: Tue, 28 Feb 2017 13:28:44 -0000 Repository: ambari Updated Branches: refs/heads/branch-2.5 982b88153 -> 55cdfff65 AMBARI-20224. HiveView2.0: Logs tab is always empty.(gauravn7) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/55cdfff6 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/55cdfff6 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/55cdfff6 Branch: refs/heads/branch-2.5 Commit: 55cdfff65aeb5aea5b970cfb6cec805b47b22466 Parents: 982b881 Author: Gaurav Nagar Authored: Tue Feb 28 18:57:50 2017 +0530 Committer: Gaurav Nagar Committed: Tue Feb 28 18:58:34 2017 +0530 ---------------------------------------------------------------------- contrib/views/hive20/src/main/resources/ui/app/adapters/query.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/55cdfff6/contrib/views/hive20/src/main/resources/ui/app/adapters/query.js ---------------------------------------------------------------------- diff --git a/contrib/views/hive20/src/main/resources/ui/app/adapters/query.js b/contrib/views/hive20/src/main/resources/ui/app/adapters/query.js index f878230..4913fe2 100644 --- a/contrib/views/hive20/src/main/resources/ui/app/adapters/query.js +++ b/contrib/views/hive20/src/main/resources/ui/app/adapters/query.js @@ -48,7 +48,7 @@ export default ApplicationAdapter.extend({ retrieveQueryLog(logFile){ let url = ''; - url = this.buildURL().replace('/jobs','') + '/files' + logFile; + url = this.buildURL().replace('/jobs','') + 'files' + logFile; return this.ajax(url, 'GET') }