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

[jira] [Updated] (IGNITE-13811) ServerImpl#pingNode(InetSocketAddress, UUID, UUID) fails to ping nodes with unresolved addresses

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

Sergey Chugunov updated IGNITE-13811:
-------------------------------------
    Fix Version/s: 2.10

> ServerImpl#pingNode(InetSocketAddress, UUID, UUID) fails to ping nodes with unresolved addresses
> ------------------------------------------------------------------------------------------------
>
>                 Key: IGNITE-13811
>                 URL: https://issues.apache.org/jira/browse/IGNITE-13811
>             Project: Ignite
>          Issue Type: Bug
>            Reporter: Ivan Bessonov
>            Assignee: Ivan Bessonov
>            Priority: Major
>             Fix For: 2.10
>
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> Wrong key is deleted from map.
> {code:java}
> pingMap.putIfAbsent(addr, fut)
> {code}
> {code:java}
> if (addr.isUnresolved())
>      addr = new InetSocketAddress(InetAddress.getByName(addr.getHostName()), addr.getPort());
> {code}
> {code:java}
> boolean b = pingMap.remove(addr, fut);
> assert b;
> {code}



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