Skip to content

Commit ea27dd4

Browse files
authored
Re-enable BWC tests and adjust versions after #77695 backport to 7.x (#78753)
1 parent 253c53d commit ea27dd4

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
@@ -140,9 +140,9 @@ tasks.register("verifyVersions") {
140140
* after the backport of the backcompat code is complete.
141141
*/
142142

143-
boolean bwc_tests_enabled = false
143+
boolean bwc_tests_enabled = true
144144
// place a PR link here when committing bwc changes:
145-
String bwc_tests_disabled_issue = "https://github.com/elastic/elasticsearch/pull/77695"
145+
String bwc_tests_disabled_issue = ""
146146
/*
147147
* FIPS 140-2 behavior was fixed in 7.11.0. Before that there is no way to run elasticsearch in a
148148
* JVM that is properly configured to be in fips mode with BCFIPS. For now we need to disable

server/src/main/java/org/elasticsearch/index/store/StoreFileMetadata.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public class StoreFileMetadata implements Writeable {
2929

3030
public static final BytesRef UNAVAILABLE_WRITER_UUID = new BytesRef();
31-
private static final org.elasticsearch.Version WRITER_UUID_MIN_VERSION = org.elasticsearch.Version.V_8_0_0;
31+
private static final org.elasticsearch.Version WRITER_UUID_MIN_VERSION = org.elasticsearch.Version.V_7_16_0;
3232

3333
private final String name;
3434

0 commit comments

Comments
 (0)