File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
server/src/main/java/org/elasticsearch/action/admin/cluster/snapshots/status Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -160,8 +160,8 @@ task verifyVersions {
160
160
* after the backport of the backcompat code is complete.
161
161
*/
162
162
163
- boolean bwc_tests_enabled = false
164
- final String bwc_tests_disabled_issue = " https://github.com/elastic/elasticsearch/pull/44261 " /* place a PR link here when committing bwc changes */
163
+ boolean bwc_tests_enabled = true
164
+ final String bwc_tests_disabled_issue = " " /* place a PR link here when committing bwc changes */
165
165
if (bwc_tests_enabled == false ) {
166
166
if (bwc_tests_disabled_issue. isEmpty()) {
167
167
throw new GradleException (" bwc_tests_disabled_issue must be set when bwc_tests_enabled == false" )
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ public void readFrom(StreamInput in) throws IOException {
172
172
includeGlobalState = in .readOptionalBoolean ();
173
173
final long startTime ;
174
174
final long time ;
175
- if (in .getVersion ().onOrAfter (Version .V_8_0_0 )) {
175
+ if (in .getVersion ().onOrAfter (Version .V_7_4_0 )) {
176
176
startTime = in .readLong ();
177
177
time = in .readLong ();
178
178
} else {
@@ -191,7 +191,7 @@ public void writeTo(StreamOutput out) throws IOException {
191
191
shard .writeTo (out );
192
192
}
193
193
out .writeOptionalBoolean (includeGlobalState );
194
- if (out .getVersion ().onOrAfter (Version .V_8_0_0 )) {
194
+ if (out .getVersion ().onOrAfter (Version .V_7_4_0 )) {
195
195
out .writeLong (stats .getStartTime ());
196
196
out .writeLong (stats .getTime ());
197
197
}
You can’t perform that action at this time.
0 commit comments