HBASE-13873 LoadTestTool addAuthInfoToConf throws UnsupportedOperationException (sunyerui)
This commit is contained in:
parent
254de0c451
commit
d33e0acdd3
@ -914,7 +914,7 @@ public class LoadTestTool extends AbstractHBaseTool {
|
||||
|
||||
private void addAuthInfoToConf(Properties authConfig, Configuration conf, String owner,
|
||||
String userList) throws IOException {
|
||||
List<String> users = Arrays.asList(userList.split(","));
|
||||
List<String> users = new ArrayList(Arrays.asList(userList.split(",")));
|
||||
users.add(owner);
|
||||
for (String user : users) {
|
||||
String keyTabFileConfKey = "hbase." + user + ".keytab.file";
|
||||
|
Loading…
x
Reference in New Issue
Block a user