Re enable ml bwc tests (#32916)
[ML] Re-enabling BWC tests Re-enable BWC tests for ML now that #32816 has been backported to 6.x
This commit is contained in:
parent
d604b3e3a1
commit
62559d2b3c
|
@ -162,9 +162,8 @@ public class AnalysisConfig implements ToXContentObject, Writeable {
|
|||
}
|
||||
|
||||
// BWC for removed per-partition normalization
|
||||
// Version check is temporarily against the latest to satisfy CI tests
|
||||
// TODO change to V_6_5_0 after successful backport to 6.x
|
||||
if (in.getVersion().before(Version.V_7_0_0_alpha1)) {
|
||||
// TODO Remove in 7.0.0
|
||||
if (in.getVersion().before(Version.V_6_5_0)) {
|
||||
in.readBoolean();
|
||||
}
|
||||
}
|
||||
|
@ -197,9 +196,8 @@ public class AnalysisConfig implements ToXContentObject, Writeable {
|
|||
}
|
||||
|
||||
// BWC for removed per-partition normalization
|
||||
// Version check is temporarily against the latest to satisfy CI tests
|
||||
// TODO change to V_6_5_0 after successful backport to 6.x
|
||||
if (out.getVersion().before(Version.V_7_0_0_alpha1)) {
|
||||
// TODO Remove in 7.0.0
|
||||
if (out.getVersion().before(Version.V_6_5_0)) {
|
||||
out.writeBoolean(false);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,9 +1,3 @@
|
|||
---
|
||||
setup:
|
||||
- skip:
|
||||
version: "all"
|
||||
reason: "Temporarily disabled while backporting https://github.com/elastic/elasticsearch/pull/32816"
|
||||
|
||||
---
|
||||
"Test get old cluster job":
|
||||
- do:
|
||||
|
|
|
@ -1,9 +1,3 @@
|
|||
---
|
||||
setup:
|
||||
- skip:
|
||||
version: "all"
|
||||
reason: "Temporarily disabled while backporting https://github.com/elastic/elasticsearch/pull/32816"
|
||||
|
||||
---
|
||||
"Test old cluster datafeed":
|
||||
- do:
|
||||
|
|
|
@ -1,9 +1,3 @@
|
|||
---
|
||||
setup:
|
||||
- skip:
|
||||
version: "all"
|
||||
reason: "Temporarily disabled while backporting https://github.com/elastic/elasticsearch/pull/32816"
|
||||
|
||||
---
|
||||
"Put job on the old cluster and post some data":
|
||||
|
||||
|
|
|
@ -1,9 +1,3 @@
|
|||
---
|
||||
setup:
|
||||
- skip:
|
||||
version: "all"
|
||||
reason: "Temporarily disabled while backporting https://github.com/elastic/elasticsearch/pull/32816"
|
||||
|
||||
---
|
||||
"Put job and datafeed in old cluster":
|
||||
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
setup:
|
||||
- skip:
|
||||
version: "all"
|
||||
reason: "Temporarily disabled while backporting https://github.com/elastic/elasticsearch/pull/32816"
|
||||
|
||||
- do:
|
||||
cluster.health:
|
||||
wait_for_status: green
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
setup:
|
||||
- skip:
|
||||
version: "all"
|
||||
reason: "Temporarily disabled while backporting https://github.com/elastic/elasticsearch/pull/32816"
|
||||
|
||||
- do:
|
||||
cluster.health:
|
||||
wait_for_status: green
|
||||
|
|
Loading…
Reference in New Issue