HiveServer can not define its port correctly
---------------------------------------------
Key: HIVE-317
URL: https://issues.apache.org/jira/browse/HIVE-317
Project: Hadoop Hive
Issue Type: Bug
Components: Server Infrastructure
Affects Versions: 0.3.0
Reporter: Min Zhou
HiveServer.java accept one argument stands for the port of this server, but I
found that can not accept this argument.
By digging into the source code, I found it may caused by these lines of main
function.
if (args.length > 1) {
port = Integer.getInteger(args[0]);
}
I think they should be:
if (args.length >= 1) {
port = Integer.parseInt(args[0]);
}
The author may have some different intention, I think.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.