Skip to content
This repository has been archived by the owner on Feb 9, 2021. It is now read-only.

Commit

Permalink
HADOOP-8338. Fix renew and cancel of RPC HDFS delegation tokens. (oma…
Browse files Browse the repository at this point in the history
…lley)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-1.0@1332914 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
omalley committed May 2, 2012
1 parent e2638d0 commit 6bf6644
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
12 changes: 8 additions & 4 deletions CHANGES.txt
Expand Up @@ -39,10 +39,12 @@ Release 1.0.3 - unreleased
MAPREDUCE-4154. streaming MR job succeeds even if the streaming command
fails. (Devaraj Das via tgraves)

HDFS-119. Fix a bug in logSync(), which causes NameNode block forever. (shv)
HDFS-119. Fix a bug in logSync(), which causes NameNode block forever.
(shv)

HADOOP-8294. IPC Connection becomes unusable even if server address was temporarilly
unresolvable. Backport of HADOOP-7428. (Kihwal Lee via mattf)
HADOOP-8294. IPC Connection becomes unusable even if server address
was temporarilly unresolvable. Backport of HADOOP-7428. (Kihwal Lee via
mattf)

HDFS-3310. Make sure that we abort when no edit log directories are left.
(Colin Patrick McCabe via eli)
Expand All @@ -53,11 +55,13 @@ Release 1.0.3 - unreleased
HDFS-3265. PowerPc Build error. (Kumar Ravi via mattf)

HDFS-3316. The tar ball doesn't include jsvc any more.
(Owen O'Malley via mattf)
(omalley via mattf)

HDFS-1041. DFSClient.getFileChecksum(..) should retry if connection to
the first datanode fails. (szetszwo)

HADOOP-8338. Fix renew and cancel of RPC HDFS delegation tokens. (omalley)

Release 1.0.2 - 2012.03.24

NEW FEATURES
Expand Down
Expand Up @@ -56,6 +56,11 @@
*/
public class DelegationTokenFetcher {

static{
Configuration.addDefaultResource("hdfs-default.xml");
Configuration.addDefaultResource("hdfs-site.xml");
}

private static final Log LOG =
LogFactory.getLog(DelegationTokenFetcher.class);
private static final String WEBSERVICE = "webservice";
Expand Down

0 comments on commit 6bf6644

Please sign in to comment.