Remove Unused Snapshot Status Values (#54893) (#54906)

* Remove Unused Snapshot Status Values

This is a left-over from before #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.
This commit is contained in:
Armin Braun 2020-04-07 19:16:13 +02:00 committed by GitHub
parent d1d478debf
commit 37abc411dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 8 deletions

View File

@ -427,9 +427,7 @@ public class SnapshotsInProgress extends AbstractNamedDiffable<Custom> implement
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;
@ -460,10 +458,6 @@ public class SnapshotsInProgress extends AbstractNamedDiffable<Custom> implement
return FAILED;
case 4:
return ABORTED;
case 5:
return MISSING;
case 6:
return WAITING;
default:
throw new IllegalArgumentException("No snapshot state for value [" + value + "]");
}

View File

@ -716,7 +716,7 @@ public class ClusterStateDiffIT extends ESIntegTestCase {
new Snapshot(randomName("repo"), new SnapshotId(randomName("snap"), UUIDs.randomBase64UUID())),
randomBoolean(),
randomBoolean(),
SnapshotsInProgress.State.fromValue((byte) randomIntBetween(0, 6)),
randomFrom(SnapshotsInProgress.State.values()),
Collections.emptyList(),
Math.abs(randomLong()),
(long) randomIntBetween(0, 1000),