Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public void testValidation() throws IOException {
validate(request, leaderIMD, followIMD, UUIDs, mapperService);
}
}

public void testDynamicIndexSettingsAreClassified() {
// We should be conscious which dynamic settings are replicated from leader to follower index.
// This is the list of settings that should be replicated:
Expand All @@ -237,7 +237,7 @@ public void testDynamicIndexSettingsAreClassified() {
if (setting.isDynamic()) {
boolean notReplicated = TransportResumeFollowAction.NON_REPLICATED_SETTINGS.contains(setting);
boolean replicated = replicatedSettings.contains(setting);
assertThat("setting [" + setting.getKey() + "] is not classified as replicated xor not replicated",
assertThat("setting [" + setting.getKey() + "] is not classified as replicated or not replicated",
notReplicated ^ replicated, is(true));
}
}
Expand Down