[jira] Created: (HADOOP-2679) There is a small typeo in hdfs_test.c when testing the success of the local hadoop initialization

View: New views
2 Messages — Rating Filter:   Alert me  

[jira] Created: (HADOOP-2679) There is a small typeo in hdfs_test.c when testing the success of the local hadoop initialization

by JIRA jira@apache.org :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

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.


[jira] Assigned: (HADOOP-2679) There is a small typeo in hdfs_test.c when testing the success of the local hadoop initialization

by JIRA jira@apache.org :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


     [ https://issues.apache.org/jira/browse/HADOOP-2679?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

dhruba borthakur reassigned HADOOP-2679:
----------------------------------------

    Assignee: dhruba borthakur

> 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
>            Assignee: dhruba borthakur
>            Priority: Trivial
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
>     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.