Skip to content

Commit

Permalink
[ML] Unmute DFA bwc tests after backport of elastic#53998
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitris-athanasiou committed Mar 24, 2020
1 parent 5e637c4 commit cf3d743
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public Stats(StreamInput in) throws IOException {
} else {
progress = in.readList(PhaseProgress::new);
}
if (in.getVersion().onOrAfter(Version.V_8_0_0)) {
if (in.getVersion().onOrAfter(Version.V_7_7_0)) {
dataCounts = in.readOptionalWriteable(DataCounts::new);
} else {
dataCounts = null;
Expand Down Expand Up @@ -349,7 +349,7 @@ public void writeTo(StreamOutput out) throws IOException {
} else {
out.writeList(progress);
}
if (out.getVersion().onOrAfter(Version.V_8_0_0)) {
if (out.getVersion().onOrAfter(Version.V_7_7_0)) {
out.writeOptionalWriteable(dataCounts);
}
if (out.getVersion().onOrAfter(Version.V_7_7_0)) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
setup:
- skip:
version: "all"
reason: "Until backport of https://github.com/elastic/elasticsearch/pull/53998"

---
"Get old outlier_detection job":

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
setup:
- skip:
version: "all"
reason: "Until backport of https://github.com/elastic/elasticsearch/pull/53998"

- do:
index:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
setup:
- skip:
version: "all"
reason: "Until backport of https://github.com/elastic/elasticsearch/pull/53998"

---
"Get old cluster outlier_detection job":

Expand Down

0 comments on commit cf3d743

Please sign in to comment.