Yiqun Lin created HDFS-11250:
--------------------------------

             Summary: Fix a typo in ReplicaUnderRecovery#setRecoveryID
                 Key: HDFS-11250
                 URL: https://issues.apache.org/jira/browse/HDFS-11250
             Project: Hadoop HDFS
          Issue Type: Bug
    Affects Versions: 3.0.0-alpha2
            Reporter: Yiqun Lin
            Assignee: Yiqun Lin
            Priority: Trivial


Found a typo in {{ReplicaUnderRecovery#setRecoveryID}}. The relevant codes:
{code}
  public void setRecoveryID(long recoveryId) {
    if (recoveryId > this.recoveryId) {
      this.recoveryId = recoveryId;
    } else {
      throw new IllegalArgumentException("The new rcovery id: " + recoveryId
          + " must be greater than the current one: " + this.recoveryId);
    }
  }
{code}
Here {{rcovery}} should be {{recovery}}.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org

Reply via email to