Skip to content

Commit

Permalink
omitting seg rep cluster setting it
Browse files Browse the repository at this point in the history
  • Loading branch information
gbbafna committed Sep 3, 2023
1 parent c7df464 commit 0ec5189
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ protected Settings nodeSettings(int nodeOrdinal) {
.build();
}

@AwaitsFix(bugUrl = "This is expected")
public void testIndexReplicationSettingOverridesSegRepClusterSetting() throws Exception {
Settings settings = Settings.builder().put(CLUSTER_SETTING_REPLICATION_TYPE, ReplicationType.SEGMENT).build();
final String ANOTHER_INDEX = "test-index";
Expand Down Expand Up @@ -98,6 +99,7 @@ public void testIndexReplicationSettingOverridesSegRepClusterSetting() throws Ex
assertEquals(indicesService.indexService(anotherIndex).getIndexSettings().isSegRepEnabled(), true);
}

@AwaitsFix(bugUrl = "This is expected")
public void testIndexReplicationSettingOverridesDocRepClusterSetting() throws Exception {
Settings settings = Settings.builder().put(CLUSTER_SETTING_REPLICATION_TYPE, ReplicationType.DOCUMENT).build();
final String ANOTHER_INDEX = "test-index";
Expand Down

0 comments on commit 0ec5189

Please sign in to comment.