From 952b0fb18cc59fe2f33b8a67c5efa2b648496d2a Mon Sep 17 00:00:00 2001 From: Vinayakumar B Date: Fri, 11 Jul 2014 05:15:18 +0000 Subject: [PATCH] HDFS-6630. Unable to fetch the block information by Browsing the file system on Namenode UI through IE9 ( Contributed by Haohui Mai) git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1609629 13f79535-47bb-0310-9956-ffa450edef68 --- hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt | 3 +++ .../hadoop-hdfs/src/main/webapps/hdfs/explorer.js | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index 6e43c0dd010..a66e35789aa 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -296,6 +296,9 @@ Release 2.6.0 - UNRELEASED HDFS-6646. [ HDFS Rolling Upgrade - Shell ] shutdownDatanode and getDatanodeInfo usage is missed ( Brahma Reddy Battula via vinayakumarb) + HDFS-6630. Unable to fetch the block information by Browsing the file system on + Namenode UI through IE9 ( Haohui Mai via vinayakumarb) + Release 2.5.0 - UNRELEASED INCOMPATIBLE CHANGES diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/explorer.js b/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/explorer.js index 4e739b3912f..ca73506a619 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/explorer.js +++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/explorer.js @@ -103,7 +103,7 @@ } var url = '/webhdfs/v1' + abs_path + '?op=GET_BLOCK_LOCATIONS'; - $.ajax({"url": url, "crossDomain": true}).done(function(data) { + $.get(url).done(function(data) { var d = get_response(data, "LocatedBlocks"); if (d === null) { show_err_msg(get_response_err_msg(data));