Github user agresch commented on a diff in the pull request:

    https://github.com/apache/storm/pull/2855#discussion_r222100581
  
    --- Diff: 
storm-server/src/main/java/org/apache/storm/healthcheck/HealthChecker.java ---
    @@ -106,13 +106,13 @@ public void run() {
                     BufferedReader reader = new BufferedReader(new 
InputStreamReader(stdin));
                     while ((str = reader.readLine()) != null) {
                         if (str.startsWith("ERROR")) {
    +                        LOG.warn("The healthcheck process {} exited with 
code {}", script, process.exitValue());
                             return FAILED;
                         }
                     }
                     return SUCCESS;
    --- End diff --
    
    I can code this if desired, but the documentation had indicated that an 
ERROR was necessary to fail.  I'm fine adding this change if people agree.  
Just let me know.  


---

Reply via email to