Skip to content

Commit

Permalink
[ML]: adjusting post backport of (#35645) (#35696)
Browse files Browse the repository at this point in the history
  • Loading branch information
benwtrent authored Nov 19, 2018
1 parent a0e6972 commit 80bcf7c
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public AnalysisConfig(StreamInput in) throws IOException {

// BWC for result_finalization_window and overlapping_buckets
// TODO Remove in 7.0.0
if (in.getVersion().before(Version.CURRENT)) {//setting to current before backport
if (in.getVersion().before(Version.V_6_6_0)) {
in.readOptionalBoolean();
in.readOptionalLong();
}
Expand Down Expand Up @@ -182,7 +182,7 @@ public void writeTo(StreamOutput out) throws IOException {

// BWC for result_finalization_window and overlapping_buckets
// TODO Remove in 7.0.0
if (out.getVersion().before(Version.CURRENT)) { //setting to current before backport
if (out.getVersion().before(Version.V_6_6_0)) {
out.writeOptionalBoolean(null);
out.writeOptionalLong(null);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
---
setup:
- skip:
version: "all"
reason: "Temporarily disabled while backporting https://github.com/elastic/elasticsearch/pull/35645"
---
"Test get old cluster job":
- do:
xpack.ml.get_jobs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
---
setup:
- skip:
version: "all"
reason: "Temporarily disabled while backporting https://github.com/elastic/elasticsearch/pull/35645"
---
"Test old cluster datafeed":
- do:
xpack.ml.get_datafeeds:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
---
setup:
- skip:
version: "all"
reason: "Temporarily disabled while backporting https://github.com/elastic/elasticsearch/pull/35645"
---
"Put job on the old cluster and post some data":

- do:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
---
setup:
- skip:
version: "all"
reason: "Temporarily disabled while backporting https://github.com/elastic/elasticsearch/pull/35645"
---
"Put job and datafeed in old cluster":

- do:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
setup:
- skip:
version: "all"
reason: "Temporarily disabled while backporting https://github.com/elastic/elasticsearch/pull/35645"
- do:
cluster.health:
wait_for_status: green
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
setup:
- skip:
version: "all"
reason: "Temporarily disabled while backporting https://github.com/elastic/elasticsearch/pull/35645"
- do:
cluster.health:
wait_for_status: green
Expand Down

0 comments on commit 80bcf7c

Please sign in to comment.