-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
[Remote clusters] Migrate server code out of legacy #56781
Merged
alisonelizabeth
merged 13 commits into
elastic:master
from
alisonelizabeth:np/remote_clusters
Feb 10, 2020
Merged
Changes from 11 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
03d8aa1
migrate to NP router
alisonelizabeth 0021d90
move server code out of legacy and integrate NP license plugin
alisonelizabeth fc7e21f
Merge branch 'master' of github.com:elastic/kibana into np/remote_clu…
alisonelizabeth 6fd2c7f
update tests + remove use of callWithRequestFactory()
alisonelizabeth 18a36f3
fix TS
alisonelizabeth 8dfd03b
Merge branch 'master' of github.com:elastic/kibana into np/remote_clu…
alisonelizabeth 12efed3
update api integrationt tests
alisonelizabeth c9d0c5d
remove todo comment
alisonelizabeth 14cbcb6
i18n fix
alisonelizabeth e65ba33
Merge branch 'master' of github.com:elastic/kibana into np/remote_clu…
alisonelizabeth 276389a
addres review feedback
alisonelizabeth 4c722fe
Merge branch 'master' into np/remote_clusters
elasticmachine a658699
Merge branch 'master' into np/remote_clusters
elasticmachine File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
112 changes: 0 additions & 112 deletions
112
x-pack/legacy/plugins/remote_clusters/server/routes/api/add_route.test.ts
This file was deleted.
Oops, something went wrong.
49 changes: 0 additions & 49 deletions
49
x-pack/legacy/plugins/remote_clusters/server/routes/api/add_route.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I think if the goal of this contribution is to complete the NP migration we should strip this file down to the bare minimum required to keep functional parity with legacy. For instance:
config
andinjectDefaultVars
see https://github.com/elastic/kibana/blob/master/src/core/MIGRATION.md#configure-pluginconfigPrefix
can be removed if we define it inkibana.json
I believemanagementSections
?isEnabled
being used somewhere else?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.
👍 I was planning on addressing these items in a separate PR as part of the
public
migration.Also,
isEnabled
is being used by CCR so I think this needs to stay as is for now.