HADOOP-10833. Remove unused cache in UserProvider. (Benoy Antony)

(cherry picked from commit 258c7d0f53)
This commit is contained in:
Benoy Antony 2014-08-30 12:49:19 -07:00
parent 7b9e763138
commit 39352a7a82
2 changed files with 2 additions and 5 deletions

View File

@ -207,6 +207,8 @@ Release 2.6.0 - UNRELEASED
schedules incoming calls and multiplexes outgoing calls. (Chris Li via
Arpit Agarwal)
HADOOP-10833. Remove unused cache in UserProvider. (Benoy Antony)
BUG FIXES
HADOOP-10781. Unportable getgrouplist() usage breaks FreeBSD (Dmitry

View File

@ -21,9 +21,7 @@
import java.io.IOException;
import java.net.URI;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.hadoop.classification.InterfaceAudience;
import org.apache.hadoop.conf.Configuration;
@ -41,8 +39,6 @@ public class UserProvider extends CredentialProvider {
public static final String SCHEME_NAME = "user";
private final UserGroupInformation user;
private final Credentials credentials;
private final Map<String, CredentialEntry> cache = new HashMap<String,
CredentialEntry>();
private UserProvider() throws IOException {
user = UserGroupInformation.getCurrentUser();
@ -86,7 +82,6 @@ public void deleteCredentialEntry(String name) throws IOException {
throw new IOException("Credential " + name +
" does not exist in " + this);
}
cache.remove(name);
}
@Override