Ted Yu created FLINK-8198:
-----------------------------

             Summary: Useless check against -1 in 
LimitedConnectionsFileSystem#fromConfig
                 Key: FLINK-8198
                 URL: https://issues.apache.org/jira/browse/FLINK-8198
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
        return new ConnectionLimitingSettings(
            totalLimit == -1 ? 0 : totalLimit,
            limitIn == -1 ? 0 : limitIn,
            limitOut == -1 ? 0 : limitOut,
            openTimeout,
{code}
If any of the 3 variables is negative, control would have returned in the if 
block above.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to