-
Notifications
You must be signed in to change notification settings - Fork 25.7k
Remove NodeJoinExecutor Transport Version #132929
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
Remove NodeJoinExecutor Transport Version #132929
Conversation
Removes an assertion inside NodeJoinExecutor that checks whether the transport version >= 8.12, since we are now actively supporting 9.x
|
Pinging @elastic/es-distributed-coordination (Team:Distributed Coordination) |
|
|
||
| // update the node's feature set if it has one | ||
| // this can happen if the master has just moved from a pre-features version to a post-features version | ||
| assert Version.V_8_12_0.onOrBefore(Version.CURRENT) : "This can be removed once 8.12.0 is no longer a valid version"; |
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.
As far as I can tell, this check never did anything other than return true? Is that why you're removing it?
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.
Yes, I was cleaning up since we've moved on from version 8_12_0
Removes reference to
TransportVersion.8_12_0