Skip to content

Commit

Permalink
Restore some of the v7 index versions related metadata tests
Browse files Browse the repository at this point in the history
These were awaited fix because v7 index versions were filtered out from the
randomized versions. They are now reinstated as we will keep supporting them.
  • Loading branch information
javanna committed Dec 19, 2024
1 parent 6983f9a commit 726b5c1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1496,8 +1496,6 @@ public void testRejectTranslogRetentionSettings() {
);
}

@UpdateForV9(owner = UpdateForV9.Owner.DATA_MANAGEMENT)
@AwaitsFix(bugUrl = "looks like a test that's not applicable to 9.0 after version bump")
public void testDeprecateTranslogRetentionSettings() {
request = new CreateIndexClusterStateUpdateRequest("create index", "test", "test");
final Settings.Builder settings = Settings.builder();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1985,8 +1985,6 @@ public void testHiddenAliasValidation() {
}
}

@UpdateForV9(owner = UpdateForV9.Owner.DATA_MANAGEMENT)
@AwaitsFix(bugUrl = "this test needs to be updated or removed after the version 9.0 bump")
public void testSystemAliasValidationMixedVersionSystemAndRegularFails() {
final IndexVersion random7xVersion = IndexVersionUtils.randomVersionBetween(
random(),
Expand Down Expand Up @@ -2037,8 +2035,6 @@ public void testSystemAliasValidationNewSystemAndRegularFails() {
);
}

@UpdateForV9(owner = UpdateForV9.Owner.DATA_MANAGEMENT)
@AwaitsFix(bugUrl = "this test needs to be updated or removed after the version 9.0 bump")
public void testSystemAliasOldSystemAndNewRegular() {
final IndexVersion random7xVersion = IndexVersionUtils.randomVersionBetween(
random(),
Expand All @@ -2052,8 +2048,6 @@ public void testSystemAliasOldSystemAndNewRegular() {
metadataWithIndices(oldVersionSystem, regularIndex);
}

@UpdateForV9(owner = UpdateForV9.Owner.DATA_MANAGEMENT)
@AwaitsFix(bugUrl = "this test needs to be updated or removed after the version 9.0 bump")
public void testSystemIndexValidationAllRegular() {
final IndexVersion random7xVersion = IndexVersionUtils.randomVersionBetween(
random(),
Expand All @@ -2068,8 +2062,6 @@ public void testSystemIndexValidationAllRegular() {
metadataWithIndices(currentVersionSystem, currentVersionSystem2, oldVersionSystem);
}

@UpdateForV9(owner = UpdateForV9.Owner.DATA_MANAGEMENT)
@AwaitsFix(bugUrl = "this test needs to be updated or removed after the version 9.0 bump")
public void testSystemAliasValidationAllSystemSomeOld() {
final IndexVersion random7xVersion = IndexVersionUtils.randomVersionBetween(
random(),
Expand Down

0 comments on commit 726b5c1

Please sign in to comment.