There is a small typeo in hdfs_test.c when testing the success of the local
hadoop initialization
-------------------------------------------------------------------------------------------------
Key: HADOOP-2679
URL: https://issues.apache.org/jira/browse/HADOOP-2679
Project: Hadoop
Issue Type: Bug
Components: libhdfs
Reporter: Jason
Priority: Trivial
hdfsFS lfs = hdfsConnect(NULL, 0);
if(!fs) {
fprintf(stderr, "Oops! Failed to connect to 'local' hdfs!\n");
exit(-1);
}
The test should be
hdfsFS lfs = hdfsConnect(NULL, 0);
if(!lfs) {
fprintf(stderr, "Oops! Failed to connect to 'local' hdfs!\n");
exit(-1);
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.