You are viewing a plain text version of this content. The canonical link for it is here.
Posted to yarn-dev@hadoop.apache.org by "Haibo Chen (JIRA)" <ji...@apache.org> on 2017/03/07 19:14:38 UTC

[jira] [Created] (YARN-6296) ReservationId.compareTo ignores id when clustertimestamp is the same

Haibo Chen created YARN-6296:
--------------------------------

             Summary: ReservationId.compareTo ignores id when clustertimestamp is the same
                 Key: YARN-6296
                 URL: https://issues.apache.org/jira/browse/YARN-6296
             Project: Hadoop YARN
          Issue Type: Bug
    Affects Versions: 3.0.0-alpha2
            Reporter: Haibo Chen


Per YARN-6252
{code:java}
  public int compareTo(ReservationId other) {
    if (this.getClusterTimestamp() - other.getClusterTimestamp() == 0) {
      return getId() > getId() ? 1 : getId() < getId() ? -1 : 0;
    } else {
    }
  }
{code}
compares id with itself. It should be
return this.getId() > other.getId() ? 1 : (this.getId() < other.getId() ? -1 : 0);





--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

---------------------------------------------------------------------
To unsubscribe, e-mail: yarn-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: yarn-dev-help@hadoop.apache.org