noblepaul commented on a change in pull request #2148: URL: https://github.com/apache/lucene-solr/pull/2148#discussion_r549539576
########## File path: solr/solrj/src/java/org/apache/solr/common/cloud/Replica.java ########## @@ -70,16 +75,24 @@ * cluster and it's state should be discarded. * </p> */ - RECOVERY_FAILED; - + RECOVERY_FAILED("F"); + + /**short name for a state. Used to encode this in the state node see {@link PerReplicaStates.State} + */ + public final String shortName; + + State(String c) { + this.shortName = c; + } + @Override public String toString() { return super.toString().toLowerCase(Locale.ROOT); Review comment: The shortname is not the same as name. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org