Skip to content

Commit 6a2c706

Browse files
authored
Adjust serialization ver. after backport of #77151 (#77394)
This commit adjusts the serialization version and re-enables BWC tests following the backport of #77151.
1 parent 5530799 commit 6a2c706

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

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

server/src/main/java/org/elasticsearch/cluster/metadata/SingleNodeShutdownMetadata.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class SingleNodeShutdownMetadata extends AbstractDiffable<SingleNodeShutd
3535
ToXContentObject,
3636
Diffable<SingleNodeShutdownMetadata> {
3737

38-
public static final Version REPLACE_SHUTDOWN_TYPE_ADDED_VERSION = Version.V_8_0_0;
38+
public static final Version REPLACE_SHUTDOWN_TYPE_ADDED_VERSION = Version.V_7_16_0;
3939

4040
public static final ParseField NODE_ID_FIELD = new ParseField("node_id");
4141
public static final ParseField TYPE_FIELD = new ParseField("type");

0 commit comments

Comments
 (0)