You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by "Matt Gilman (JIRA)" <ji...@apache.org> on 2015/04/23 20:05:39 UTC

[jira] [Resolved] (NIFI-530) createRemoteProcessGroupDto in DtoFactory.java does not count inactive remote ports correctly

     [ https://issues.apache.org/jira/browse/NIFI-530?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matt Gilman resolved NIFI-530.
------------------------------
    Resolution: Fixed

> createRemoteProcessGroupDto in DtoFactory.java does not count inactive remote ports correctly
> ---------------------------------------------------------------------------------------------
>
>                 Key: NIFI-530
>                 URL: https://issues.apache.org/jira/browse/NIFI-530
>             Project: Apache NiFi
>          Issue Type: Bug
>          Components: Core UI
>    Affects Versions: 0.0.2
>            Reporter: Mark Latimer
>            Assignee: Matt Gilman
>            Priority: Trivial
>             Fix For: 0.1.0
>
>         Attachments: 0143-Increase-inactive-rather-than-active-counter-where-p.patch, 530.diff
>
>
> createRemoteProcessGroupDto in Dtofactory.java does not increase the inactiveRemoteOutputPortCount 
> {code:title=Dtofactory.java }
>         int activeRemoteOutputPortCount = 0;
>         int inactiveRemoteOutputPortCount = 0; //not updated
>         for (final Port port : group.getOutputPorts()) {
>             outputPorts.add(createRemoteProcessGroupPortDto((RemoteGroupPort) port));
>             if (!port.getConnections().isEmpty()) {
>                 if (port.isRunning()) {
>                     activeRemoteOutputPortCount++;
>                 } else {
>                     //should be inactive like the code for incoming connections.
>                     activeRemoteOutputPortCount++;
>                 }
>             }
>         }
> {code}



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