You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Ignite TC Bot (Jira)" <ji...@apache.org> on 2020/05/13 08:08:00 UTC

[jira] [Commented] (IGNITE-13004) Fix wrong comparison in TcpCommunicationSpi#closeConnections(UUID)

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

Ignite TC Bot commented on IGNITE-13004:
----------------------------------------

{panel:title=Branch: [pull/7794/head] Base: [master] : No blockers found!|borderStyle=dashed|borderColor=#ccc|titleBGColor=#D6F7C1}{panel}
[TeamCity *--&gt; Run :: All* Results|https://ci.ignite.apache.org/viewLog.html?buildId=5300801&amp;buildTypeId=IgniteTests24Java8_RunAll]

> Fix wrong comparison in TcpCommunicationSpi#closeConnections(UUID)
> ------------------------------------------------------------------
>
>                 Key: IGNITE-13004
>                 URL: https://issues.apache.org/jira/browse/IGNITE-13004
>             Project: Ignite
>          Issue Type: Bug
>    Affects Versions: 2.9, 2.8.1
>            Reporter: Sergey Antonov
>            Assignee: Sergey Antonov
>            Priority: Major
>             Fix For: 2.9
>
>
> In IGNITE-12774 was introduced a bug in comparison:
> {code:java}
>         for (ConnectionKey connKey : clientFuts.keySet()) {
>             if (!nodeId.equals(connKey))
>                 continue; 
> {code}
> The right code is: 
> {code:java}
>         for (ConnectionKey connKey : clientFuts.keySet()) {
>             if (!nodeId.equals(connKey.nodeId()))
>                 continue; 
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)