-
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
Fix split package org.elasticsearch.client #82010
Fix split package org.elasticsearch.client #82010
Conversation
Note to reviewers. Much of the changes are related to the shimmer in package and import statements. There are no semantic changes. To more easily see changes not related to the aforementioned shimmer, one can run a cross branch diff, see below. Highlights (if there are any):
|
@elasticmachine retest this please |
BWC failure is unrelated and has an issue #82014 already. |
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.
LGTM, it is an automated refactoring so no point reviewing every file. Chrome will crash anyway.
the new name is good to me
@elasticmachine update branch |
@elasticmachine update branch |
@elasticmachine retest this please |
Fixes split packages between server and the LLRC (and HLRC), by renaming
the server package to a more appropriate name that represents the fact
that is in an internal client. That is, rename server's
org.elasticsearch.client
toorg.elasticsearch.client.internal
.Offline comments have indicated a preference to retain the disassociation
between the internal client and transport. While many of the actions
of the internal client end up sending transport requests, not all do. For this
reason
org.elasticsearch.client.internal
was chosen.The package is a perfect split, so the changes largely amount to
import and package statements.
closed #81984