Skip to content

Commit

Permalink
[DOCS] Remove shadow replica reference (elastic#50029)
Browse files Browse the repository at this point in the history
Removes a reference to shadow replicas from the cat shards API docs
and a comment in cluster/routing/UnassignedInfo.java.

Shadow replicas were removed with elastic#23906.
  • Loading branch information
jrodewig authored and SivagurunathanV committed Jan 21, 2020
1 parent 4091025 commit b362d15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/reference/cat/shards.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ Reason the shard is unassigned. Returned values are:
* `NEW_INDEX_RESTORED`: Unassigned as a result of restoring into a new index.
* `NODE_LEFT`: Unassigned as a result of the node hosting it leaving the cluster.
* `REALLOCATED_REPLICA`: A better replica location is identified and causes the existing replica allocation to be cancelled.
* `REINITIALIZED`: When a shard moves from started back to initializing, for example, with shadow replicas.
* `REINITIALIZED`: When a shard moves from started back to initializing.
* `REPLICA_ADDED`: Unassigned as a result of explicit addition of a replica.
* `REROUTE_CANCELLED`: Unassigned as a result of explicit cancel reroute command.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public enum Reason {
*/
REROUTE_CANCELLED,
/**
* When a shard moves from started back to initializing, for example, during shadow replica
* When a shard moves from started back to initializing.
*/
REINITIALIZED,
/**
Expand Down

0 comments on commit b362d15

Please sign in to comment.