Skip to content

Commit ca2d015

Browse files
committed
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
1 parent a19605f commit ca2d015

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,11 +452,13 @@ Release 2.5.0 - UNRELEASED
452452
HDFS-6356. Fix typo in DatanodeLayoutVersion. (Tulasi G via wang)
453453

454454
HDFS-6447. balancer should timestamp the completion message.
455-
(Juan Yu via wang).
455+
(Juan Yu via wang)
456456

457457
HDFS-6463. Clarify behavior of AclStorage#createFsPermissionForExtendedAcl
458458
in comments. (cnauroth)
459459

460+
HDFS-6472. fix typo in webapps/hdfs/explorer.js. (Juan Yu via wang)
461+
460462
OPTIMIZATIONS
461463

462464
HDFS-6214. Webhdfs has poor throughput for files >2GB (daryn)

hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/hdfs/explorer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
return function (jqxhr, text, err) {
4646
switch(jqxhr.status) {
4747
case 401:
48-
var msg = '<p>Authentication failed when trying to open ' + url + ': Unauthrozied.</p>';
48+
var msg = '<p>Authentication failed when trying to open ' + url + ': Unauthorized.</p>';
4949
break;
5050
case 403:
5151
if(jqxhr.responseJSON !== undefined && jqxhr.responseJSON.RemoteException !== undefined) {

0 commit comments

Comments
 (0)