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

    https://github.com/apache/storm/pull/2430#discussion_r152348839
  
    --- Diff: 
storm-webapp/src/main/java/org/apache/storm/daemon/logviewer/handler/LogviewerLogSearchHandler.java
 ---
    @@ -97,8 +98,14 @@ public LogviewerLogSearchHandler(Map<String, Object> 
stormConf, String logRoot,
             this.logRoot = logRoot;
             this.daemonLogRoot = daemonLogRoot;
             this.resourceAuthorizer = resourceAuthorizer;
    -
    -        this.logviewerPort = 
ObjectReader.getInt(stormConf.get(DaemonConfig.LOGVIEWER_PORT));
    +        Integer httpsPort = 
ObjectReader.getInt(stormConf.get(DaemonConfig.LOGVIEWER_HTTPS_PORT), 0);
    --- End diff --
    
    It seems a little odd to me to use getInt with a default, and then check if 
the value is the default. Why not check if stormConf.get(...) returns null 
instead?


---

Reply via email to