You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by gn...@apache.org on 2017/02/28 13:28:01 UTC

ambari git commit: AMBARI-20224. HiveView2.0: Logs tab is always empty.(gauravn7)

Repository: ambari
Updated Branches:
  refs/heads/trunk 2a4bc9d2e -> ba786d7f0


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/ba786d7f
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/ba786d7f
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/ba786d7f

Branch: refs/heads/trunk
Commit: ba786d7f07d4b056ffa74b0071eb061c1f7fef5c
Parents: 2a4bc9d
Author: Gaurav Nagar <gr...@gmail.com>
Authored: Tue Feb 28 18:57:50 2017 +0530
Committer: Gaurav Nagar <gr...@gmail.com>
Committed: Tue Feb 28 18:57:50 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/ba786d7f/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')
   }