HDFS-6472. fix typo in webapps/hdfs/explorer.js. Contributed by Juan Yu.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1598746 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d599adcc6a
commit
f7f651fc56
|
@ -452,11 +452,13 @@ Release 2.5.0 - UNRELEASED
|
||||||
HDFS-6356. Fix typo in DatanodeLayoutVersion. (Tulasi G via wang)
|
HDFS-6356. Fix typo in DatanodeLayoutVersion. (Tulasi G via wang)
|
||||||
|
|
||||||
HDFS-6447. balancer should timestamp the completion message.
|
HDFS-6447. balancer should timestamp the completion message.
|
||||||
(Juan Yu via wang).
|
(Juan Yu via wang)
|
||||||
|
|
||||||
HDFS-6463. Clarify behavior of AclStorage#createFsPermissionForExtendedAcl
|
HDFS-6463. Clarify behavior of AclStorage#createFsPermissionForExtendedAcl
|
||||||
in comments. (cnauroth)
|
in comments. (cnauroth)
|
||||||
|
|
||||||
|
HDFS-6472. fix typo in webapps/hdfs/explorer.js. (Juan Yu via wang)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
HDFS-6214. Webhdfs has poor throughput for files >2GB (daryn)
|
HDFS-6214. Webhdfs has poor throughput for files >2GB (daryn)
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
return function (jqxhr, text, err) {
|
return function (jqxhr, text, err) {
|
||||||
switch(jqxhr.status) {
|
switch(jqxhr.status) {
|
||||||
case 401:
|
case 401:
|
||||||
var msg = '<p>Authentication failed when trying to open ' + url + ': Unauthrozied.</p>';
|
var msg = '<p>Authentication failed when trying to open ' + url + ': Unauthorized.</p>';
|
||||||
break;
|
break;
|
||||||
case 403:
|
case 403:
|
||||||
if(jqxhr.responseJSON !== undefined && jqxhr.responseJSON.RemoteException !== undefined) {
|
if(jqxhr.responseJSON !== undefined && jqxhr.responseJSON.RemoteException !== undefined) {
|
||||||
|
|
Loading…
Reference in New Issue