File tree 2 files changed +4
-4
lines changed
server/src/main/java/org/elasticsearch/discovery 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -134,9 +134,9 @@ tasks.register("verifyVersions") {
134
134
* after the backport of the backcompat code is complete.
135
135
*/
136
136
137
- boolean bwc_tests_enabled = false
137
+ boolean bwc_tests_enabled = true
138
138
// place a PR link here when committing bwc changes:
139
- String bwc_tests_disabled_issue = " https://github.com/elastic/elasticsearch/pull/77552 "
139
+ String bwc_tests_disabled_issue = " "
140
140
/*
141
141
* FIPS 140-2 behavior was fixed in 7.11.0. Before that there is no way to run elasticsearch in a
142
142
* JVM that is properly configured to be in fips mode with BCFIPS. For now we need to disable
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public DiscoveryStats(StreamInput in) throws IOException {
47
47
} else {
48
48
clusterStateUpdateStats = null ;
49
49
}
50
- if (in .getVersion ().onOrAfter (Version .V_8_0_0 )) {
50
+ if (in .getVersion ().onOrAfter (Version .V_7_16_0 )) {
51
51
applierRecordingStats = in .readOptionalWriteable (ClusterApplierRecordingService .Stats ::new );
52
52
} else {
53
53
applierRecordingStats = null ;
@@ -61,7 +61,7 @@ public void writeTo(StreamOutput out) throws IOException {
61
61
if (out .getVersion ().onOrAfter (Version .V_7_16_0 )) {
62
62
out .writeOptionalWriteable (clusterStateUpdateStats );
63
63
}
64
- if (out .getVersion ().onOrAfter (Version .V_8_0_0 )) {
64
+ if (out .getVersion ().onOrAfter (Version .V_7_16_0 )) {
65
65
out .writeOptionalWriteable (applierRecordingStats );
66
66
}
67
67
}
You can’t perform that action at this time.
0 commit comments