Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re enable ml bwc tests #32916

Merged
merged 2 commits into from
Aug 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,8 @@ public AnalysisConfig(StreamInput in) throws IOException {
}

// 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();
}
}
Expand Down Expand Up @@ -197,9 +196,8 @@ public void writeTo(StreamOutput out) throws IOException {
}

// 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);
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
Original file line number Diff line number Diff line change
@@ -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":

Expand Down
Original file line number Diff line number Diff line change
@@ -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":

Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down