-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
[ML] Unmute BWC tests and fix version after backport of #50553 #50599
[ML] Unmute BWC tests and fix version after backport of #50553 #50599
Conversation
Pinging @elastic/ml-core (:ml) |
run elasticsearch-ci/2 |
@@ -40,7 +40,7 @@ private DeleteDataFrameAnalyticsAction() { | |||
public Request(StreamInput in) throws IOException { | |||
super(in); | |||
id = in.readString(); | |||
if (in.getVersion().onOrAfter(Version.CURRENT)) { | |||
if (in.getVersion().onOrAfter(Version.V_8_0_0)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since #50589 is merged, shouldn't the version be V_7_6_0
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since BWC has passed with the version being wrong, I am guessing we don't have a BWC test that deletes analytics jobs do we?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, 🤦♂
Indeed. I'll add one that creates and deletes a job in the mixed cluster.
Relates #50553