Skip to content

Commit d367984

Browse files
Reenable BwC Tests after #53372 (#53381)
Reenabling BwC Tests now that #53372 has been merged.
1 parent 63c29e2 commit d367984

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,8 @@ task verifyVersions {
220220
* after the backport of the backcompat code is complete.
221221
*/
222222

223-
boolean bwc_tests_enabled = false
224-
final String bwc_tests_disabled_issue = "https://github.com/elastic/elasticsearch/pull/53372" /* place a PR link here when committing bwc changes */
223+
boolean bwc_tests_enabled = true
224+
final String bwc_tests_disabled_issue = "" /* place a PR link here when committing bwc changes */
225225
if (bwc_tests_enabled == false) {
226226
if (bwc_tests_disabled_issue.isEmpty()) {
227227
throw new GradleException("bwc_tests_disabled_issue must be set when bwc_tests_enabled == false")

server/src/main/java/org/elasticsearch/action/admin/indices/forcemerge/ForceMergeRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public static final class Defaults {
5656
private boolean onlyExpungeDeletes = Defaults.ONLY_EXPUNGE_DELETES;
5757
private boolean flush = Defaults.FLUSH;
5858

59-
private static final Version FORCE_MERGE_UUID_VERSION = Version.V_8_0_0;
59+
private static final Version FORCE_MERGE_UUID_VERSION = Version.V_7_7_0;
6060

6161
/**
6262
* Force merge UUID to store in the live commit data of a shard under

0 commit comments

Comments
 (0)