You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-issues@hadoop.apache.org by "Colin Patrick McCabe (JIRA)" <ji...@apache.org> on 2012/07/27 00:14:34 UTC

[jira] [Created] (MAPREDUCE-4489) fuse_dfs: incorrect configuration value checked for connection expiry timer period

Colin Patrick McCabe created MAPREDUCE-4489:
-----------------------------------------------

             Summary: fuse_dfs: incorrect configuration value checked for connection expiry timer period
                 Key: MAPREDUCE-4489
                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-4489
             Project: Hadoop Map/Reduce
          Issue Type: Bug
            Reporter: Colin Patrick McCabe
            Assignee: Colin Patrick McCabe
            Priority: Minor


In fuse_dfs, we check an incorrect hdfs configuration value checked for the connection expiry timer period.

{code}
gTimerPeriod = FUSE_CONN_DEFAULT_TIMER_PERIOD;
ret = hdfsConfGetInt(HADOOP_FUSE_CONNECTION_TIMEOUT, &gTimerPeriod);
if (ret) {
  fprintf(stderr, "Unable to determine the configured value for %s.",
        HADOOP_FUSE_TIMER_PERIOD);
  return -EINVAL
}
{code}

We should be checking HADOOP_FUSE_TIMER_PERIOD.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira