HDFS-6587. Fix a typo in message issued from explorer.js. Contributed by Yongjun Zhang.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1605184 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
eaf2f6137f
commit
a92318c2ef
|
@ -484,6 +484,7 @@ Release 2.5.0 - UNRELEASED
|
|||
NetworkTopology#sortByDistance. (Yongjun Zhang via wang)
|
||||
|
||||
HDFS-6583. Remove clientNode in FileUnderConstructionFeature. (wheat9)
|
||||
|
||||
BUG FIXES
|
||||
|
||||
HDFS-6112. NFS Gateway docs are incorrect for allowed hosts configuration.
|
||||
|
@ -712,6 +713,9 @@ Release 2.5.0 - UNRELEASED
|
|||
HDFS-6587. Bug in TestBPOfferService can cause test failure. (Zhilei Xu
|
||||
via Arpit Agarwal)
|
||||
|
||||
HDFS-6598. Fix a typo in message issued from explorer.js. (Yongjun Zhang
|
||||
via wheat9)
|
||||
|
||||
BREAKDOWN OF HDFS-2006 SUBTASKS AND RELATED JIRAS
|
||||
|
||||
HDFS-6299. Protobuf for XAttr and client-side implementation. (Yi Liu via umamahesh)
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
var msg = '<p>Path does not exist on HDFS or WebHDFS is disabled. Please check your path or enable WebHDFS</p>';
|
||||
break;
|
||||
default:
|
||||
var msg = '<p>Failed to retreive data from ' + url + ': ' + err + '</p>';
|
||||
var msg = '<p>Failed to retrieve data from ' + url + ': ' + err + '</p>';
|
||||
}
|
||||
show_err_msg(msg);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue