HBASE-9900. Fix unintended byte[].toString in AccessController
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1539882 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d6ab53ce19
commit
60976c646d
|
@ -572,7 +572,7 @@ public class TableAuthManager {
|
|||
}
|
||||
|
||||
public void removeNamespace(byte[] ns) {
|
||||
nsCache.remove(ns);
|
||||
nsCache.remove(Bytes.toString(ns));
|
||||
}
|
||||
|
||||
public void removeTable(TableName table) {
|
||||
|
|
Loading…
Reference in New Issue