Yufei Gu created MAPREDUCE-6770:
-----------------------------------

             Summary: NodeHealthScriptRunner#reportHealthStatus bug fix
                 Key: MAPREDUCE-6770
                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-6770
             Project: Hadoop Map/Reduce
          Issue Type: Bug
          Components: nodemanager
            Reporter: Yufei Gu
            Assignee: Yufei Gu


{code}
      case FAILED_WITH_EXIT_CODE:
        setHealthStatus(true, "", now);
        break;
{code}
should be 
{code}
      case FAILED_WITH_EXIT_CODE:
        setHealthStatus(false, "", now);
        break;
{code}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: mapreduce-dev-unsubscr...@hadoop.apache.org
For additional commands, e-mail: mapreduce-dev-h...@hadoop.apache.org

Reply via email to