You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Dmitriy Pavlov (JIRA)" <ji...@apache.org> on 2018/03/22 20:18:00 UTC

[jira] [Updated] (IGNITE-6749) Illegal comparsion in NodeOrderComparator

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

Dmitriy Pavlov updated IGNITE-6749:
-----------------------------------
    Fix Version/s:     (was: 2.5)

> Illegal comparsion in NodeOrderComparator
> -----------------------------------------
>
>                 Key: IGNITE-6749
>                 URL: https://issues.apache.org/jira/browse/IGNITE-6749
>             Project: Ignite
>          Issue Type: Bug
>          Components: general
>    Affects Versions: 2.1
>            Reporter: Alexander Belyak
>            Assignee: Dmitriy Pavlov
>            Priority: Major
>
> In org.apache.ignite.internal.cluster.compare method code
> {panel}
>         Object consId1 = n1.consistentId();
>         Object consId2 = n2.consistentId();
>         if (consId1 instanceof Comparable && consId2 instanceof Comparable) {
>             return ((Comparable)consId1).compareTo(consId2);
>         }
> {panel}
> check only that consId1 and consId2 is Comparable, but they may not be Comparable to each other. For example: String and UUID is comparable, but UUID.compareTo(String) throw ClassCastException.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)