Skip to content

Commit 8afc8e6

Browse files
authored
enable BWC tests after lucene upgrade (#55247) (#55254)
1 parent 2d9e3c7 commit 8afc8e6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ task verifyVersions {
194194
* after the backport of the backcompat code is complete.
195195
*/
196196

197-
boolean bwc_tests_enabled = false
198-
final String bwc_tests_disabled_issue = "https://github.com/elastic/elasticsearch/pull/55236" /* place a PR link here when committing bwc changes */
197+
boolean bwc_tests_enabled = true
198+
final String bwc_tests_disabled_issue = "" /* place a PR link here when committing bwc changes */
199199
if (bwc_tests_enabled == false) {
200200
if (bwc_tests_disabled_issue.isEmpty()) {
201201
throw new GradleException("bwc_tests_disabled_issue must be set when bwc_tests_enabled == false")

server/src/main/java/org/elasticsearch/Version.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
133133
public static final Version V_7_6_1 = new Version(7060199, org.apache.lucene.util.Version.LUCENE_8_4_0);
134134
public static final Version V_7_6_2 = new Version(7060299, org.apache.lucene.util.Version.LUCENE_8_4_0);
135135
public static final Version V_7_6_3 = new Version(7060399, org.apache.lucene.util.Version.LUCENE_8_4_0);
136-
public static final Version V_7_7_0 = new Version(7070099, org.apache.lucene.util.Version.LUCENE_8_5_0);
136+
public static final Version V_7_7_0 = new Version(7070099, org.apache.lucene.util.Version.LUCENE_8_5_1);
137137
public static final Version V_7_8_0 = new Version(7080099, org.apache.lucene.util.Version.LUCENE_8_5_1);
138138
public static final Version CURRENT = V_7_8_0;
139139

0 commit comments

Comments
 (0)