File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/async Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -144,9 +144,9 @@ tasks.register("verifyVersions") {
144
144
* after the backport of the backcompat code is complete.
145
145
*/
146
146
147
- boolean bwc_tests_enabled = false
147
+ boolean bwc_tests_enabled = true
148
148
// place a PR link here when committing bwc changes:
149
- String bwc_tests_disabled_issue = " https://github.com/elastic/elasticsearch/pull/74804 "
149
+ String bwc_tests_disabled_issue = " "
150
150
/*
151
151
* FIPS 140-2 behavior was fixed in 7.11.0. Before that there is no way to run elasticsearch in a
152
152
* 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 @@ -592,7 +592,7 @@ public void close() {
592
592
};
593
593
final Version minNodeVersion = clusterService .state ().nodes ().getMinNodeVersion ();
594
594
Version .writeVersion (minNodeVersion , new OutputStreamStreamOutput (os ));
595
- if (minNodeVersion .onOrAfter (Version .V_8_0_0 )) {
595
+ if (minNodeVersion .onOrAfter (Version .V_7_15_0 )) {
596
596
os = CompressorFactory .COMPRESSOR .threadLocalOutputStream (os );
597
597
}
598
598
try (OutputStreamStreamOutput out = new OutputStreamStreamOutput (os )) {
@@ -617,7 +617,7 @@ public int read() {
617
617
});
618
618
final Version version = Version .readVersion (new InputStreamStreamInput (encodedIn ));
619
619
assert version .onOrBefore (Version .CURRENT ) : version + " >= " + Version .CURRENT ;
620
- if (version .onOrAfter (Version .V_8_0_0 )) {
620
+ if (version .onOrAfter (Version .V_7_15_0 )) {
621
621
encodedIn = CompressorFactory .COMPRESSOR .threadLocalInputStream (encodedIn );
622
622
}
623
623
try (StreamInput in = new NamedWriteableAwareStreamInput (new InputStreamStreamInput (encodedIn ), registry )) {
You can’t perform that action at this time.
0 commit comments