Details
-
Bug
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
3.0.0-alpha2
-
None
-
None
-
Reviewed
Description
Found a typo contained in exception message of ReplicaUnderRecovery#setRecoveryID. The relevant codes:
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); } }
Here rcovery should be recovery.