Skip to content

Commit

Permalink
Remove Unused Snapshot Status Values
Browse files Browse the repository at this point in the history
This is a left-over from before elastic#41940 when we used the same status enum for the shards
and the snapshots overall. The two removed values were never used on the shard level
so we can simply remove them here.
  • Loading branch information
original-brownbear committed Apr 7, 2020
1 parent f942655 commit 78e77a0
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -427,9 +427,7 @@ public enum State {
STARTED((byte) 1, false),
SUCCESS((byte) 2, true),
FAILED((byte) 3, true),
ABORTED((byte) 4, false),
MISSING((byte) 5, true),
WAITING((byte) 6, false);
ABORTED((byte) 4, false);

private final byte value;

Expand Down Expand Up @@ -460,10 +458,6 @@ public static State fromValue(byte value) {
return FAILED;
case 4:
return ABORTED;
case 5:
return MISSING;
case 6:
return WAITING;
default:
throw new IllegalArgumentException("No snapshot state for value [" + value + "]");
}
Expand Down

0 comments on commit 78e77a0

Please sign in to comment.