HDFS-5407. Merging change r1544362 from trunk

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1544378 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brandon Li 2013-11-21 23:59:22 +00:00
parent c282e06097
commit db3ed5df52
2 changed files with 4 additions and 2 deletions

View File

@ -99,7 +99,7 @@ class DFSClientCache {
this.config = config;
this.clientCache = CacheBuilder.newBuilder()
.maximumSize(clientCache)
.removalListener(clientRemovealListener())
.removalListener(clientRemovalListener())
.build(clientLoader());
this.inputstreamCache = CacheBuilder.newBuilder()
@ -127,7 +127,7 @@ class DFSClientCache {
};
}
private RemovalListener<String, DFSClient> clientRemovealListener() {
private RemovalListener<String, DFSClient> clientRemovalListener() {
return new RemovalListener<String, DFSClient>() {
@Override
public void onRemoval(RemovalNotification<String, DFSClient> notification) {

View File

@ -313,6 +313,8 @@ Release 2.2.1 - UNRELEASED
HDFS-5288. Close idle connections in portmap (Haohui Mai via brandonli)
HDFS-5407. Fix typos in DFSClientCache (Haohui Mai via brandonli)
Release 2.2.0 - 2013-10-13
INCOMPATIBLE CHANGES