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
This commit is contained in:
parent
81930b75bd
commit
952b0fb18c
|
@ -296,6 +296,9 @@ Release 2.6.0 - UNRELEASED
|
||||||
HDFS-6646. [ HDFS Rolling Upgrade - Shell ] shutdownDatanode and getDatanodeInfo
|
HDFS-6646. [ HDFS Rolling Upgrade - Shell ] shutdownDatanode and getDatanodeInfo
|
||||||
usage is missed ( Brahma Reddy Battula via vinayakumarb)
|
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
|
Release 2.5.0 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -103,7 +103,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
var url = '/webhdfs/v1' + abs_path + '?op=GET_BLOCK_LOCATIONS';
|
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");
|
var d = get_response(data, "LocatedBlocks");
|
||||||
if (d === null) {
|
if (d === null) {
|
||||||
show_err_msg(get_response_err_msg(data));
|
show_err_msg(get_response_err_msg(data));
|
||||||
|
|
Loading…
Reference in New Issue