You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@storm.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2016/01/04 22:25:39 UTC

[jira] [Commented] (STORM-1412) Null check should be done in the first place

    [ https://issues.apache.org/jira/browse/STORM-1412?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15081836#comment-15081836 ] 

ASF GitHub Bot commented on STORM-1412:
---------------------------------------

Github user ptgoetz commented on the pull request:

    https://github.com/apache/storm/pull/970#issuecomment-168813390
  
    +1


> Null check should be done in the first place
> --------------------------------------------
>
>                 Key: STORM-1412
>                 URL: https://issues.apache.org/jira/browse/STORM-1412
>             Project: Apache Storm
>          Issue Type: Bug
>          Components: storm-core
>            Reporter: Xin Wang
>            Assignee: Xin Wang
>
> Null check should be done in the first place for class User, otherwise it may cause NullPointerException.
> before fix:
> {code}
>      private void moveTopology(TopologyDetails topo, Set<TopologyDetails> src, String srcName, Set<TopologyDetails> dest, String destName) {
>          LOG.debug("For User {} Moving topo {} from {} to {}", this.userId, topo.getName(), srcName, destName);
>          if (topo == null) {
>              return;
>          }
> {code}
> after fix:
> {code}
>     private void moveTopology(TopologyDetails topo, Set<TopologyDetails> src, String srcName, Set<TopologyDetails> dest, String destName) {
>         if (topo == null) {
>             return;
>         }
>         LOG.debug("For User {} Moving topo {} from {} to {}", this.userId, topo.getName(), srcName, destName);
> {code}



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