File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
server/src/test/java/org/opensearch/index Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -866,7 +866,7 @@ public void testEnablingRemoteStoreFailsWhenReplicationTypeIsDocument() {
866
866
() -> IndexMetadata .INDEX_REMOTE_STORE_ENABLED_SETTING .get (indexSettings )
867
867
);
868
868
assertEquals (
869
- "Settings index.remote_store.enabled cannot be enabled when index.replication.type is set to DOCUMENT " ,
869
+ "To enable index.remote_store.enabled, index.replication.type should be set to SEGMENT " ,
870
870
iae .getMessage ()
871
871
);
872
872
}
@@ -878,7 +878,7 @@ public void testEnablingRemoteStoreFailsWhenReplicationTypeIsDefault() {
878
878
() -> IndexMetadata .INDEX_REMOTE_STORE_ENABLED_SETTING .get (indexSettings )
879
879
);
880
880
assertEquals (
881
- "Settings index.remote_store.enabled cannot be enabled when index.replication.type is set to DOCUMENT " ,
881
+ "To enable index.remote_store.enabled, index.replication.type should be set to SEGMENT " ,
882
882
iae .getMessage ()
883
883
);
884
884
}
You can’t perform that action at this time.
0 commit comments