Skip to content

Commit

Permalink
[Remote Store] Change remote store integ tests to use remote store fo…
Browse files Browse the repository at this point in the history
…r replication (#8768)

* Change remote store integ tests to use remote store for replication

---------

Signed-off-by: Sachin Kale <kalsac@amazon.com>
Co-authored-by: Sachin Kale <kalsac@amazon.com>
(cherry picked from commit 1d3b006)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and Sachin Kale committed Jul 19, 2023
1 parent 416665b commit f8bbeaf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 63 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ protected Settings featureFlagSettings() {
@Before
public void setup() {
FeatureFlagSetter.set(FeatureFlags.REMOTE_STORE);
FeatureFlagSetter.set(FeatureFlags.SEGMENT_REPLICATION_EXPERIMENTAL);
internalCluster().startClusterManagerOnlyNode();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ protected boolean addMockInternalEngine() {

@Override
protected Settings featureFlagSettings() {
return Settings.builder().put(super.featureFlagSettings()).put(FeatureFlags.REMOTE_STORE, "true").build();
return Settings.builder()
.put(super.featureFlagSettings())
.put(FeatureFlags.REMOTE_STORE, "true")
.put(FeatureFlags.SEGMENT_REPLICATION_EXPERIMENTAL, "true")
.build();
}

public Settings indexSettings() {
Expand Down

This file was deleted.

0 comments on commit f8bbeaf

Please sign in to comment.