[Refactor] Requests to use MediaType instead of XContentType#6218
Merged
nknize merged 6 commits intoopensearch-project:mainfrom Feb 8, 2023
Merged
[Refactor] Requests to use MediaType instead of XContentType#6218nknize merged 6 commits intoopensearch-project:mainfrom
nknize merged 6 commits intoopensearch-project:mainfrom
Conversation
reta
reviewed
Feb 7, 2023
client/rest-high-level/src/main/java/org/opensearch/client/indices/PutMappingRequest.java
Show resolved
Hide resolved
Contributor
Gradle Check (Jenkins) Run Completed with:
|
reta
reviewed
Feb 7, 2023
client/rest-high-level/src/main/java/org/opensearch/client/indices/PutMappingRequest.java
Outdated
Show resolved
Hide resolved
29abae8 to
739d524
Compare
Contributor
Gradle Check (Jenkins) Run Completed with:
|
Contributor
Gradle Check (Jenkins) Run Completed with:
|
Refactors various REST requests to use MediaType instead of XContentType to abstract media format from the REST interfaces. Signed-off-by: Nicholas Walter Knize <nknize@apache.org>
Signed-off-by: Nicholas Walter Knize <nknize@apache.org>
Signed-off-by: Nicholas Walter Knize <nknize@apache.org>
Signed-off-by: Nicholas Walter Knize <nknize@apache.org>
Signed-off-by: Nicholas Walter Knize <nknize@apache.org>
6978118 to
ded5906
Compare
Contributor
Gradle Check (Jenkins) Run Completed with:
|
reta
reviewed
Feb 8, 2023
server/src/main/java/org/opensearch/index/reindex/ReindexRequest.java
Outdated
Show resolved
Hide resolved
Contributor
Gradle Check (Jenkins) Run Completed with:
|
Codecov Report
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more @@ Coverage Diff @@
## main #6218 +/- ##
============================================
- Coverage 70.91% 70.86% -0.06%
- Complexity 58898 58915 +17
============================================
Files 4780 4780
Lines 281380 281453 +73
Branches 40635 40639 +4
============================================
- Hits 199536 199444 -92
- Misses 65426 65633 +207
+ Partials 16418 16376 -42
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Signed-off-by: Nicholas Walter Knize <nknize@apache.org>
reta
approved these changes
Feb 8, 2023
Contributor
Gradle Check (Jenkins) Run Completed with:
|
Contributor
|
The backport to To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/backport-2.x 2.x
# Navigate to the new working tree
pushd ../.worktrees/backport-2.x
# Create a new branch
git switch --create backport/backport-6218-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 1f4cdd2f75ca5e98bd81f3226566d263ec00455c
# Push it to GitHub
git push --set-upstream origin backport/backport-6218-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/backport-2.xThen, create a pull request where the |
andrross
pushed a commit
to andrross/OpenSearch
that referenced
this pull request
Feb 20, 2023
…rch-project#6218) Refactors various REST requests to use MediaType instead of XContentType to abstract media format from the REST interfaces. Signed-off-by: Nicholas Walter Knize <nknize@apache.org> (cherry picked from commit 1f4cdd2) Signed-off-by: Andrew Ross <andrross@amazon.com>
andrross
pushed a commit
to andrross/OpenSearch
that referenced
this pull request
Feb 20, 2023
…rch-project#6218) Refactors various REST requests to use MediaType instead of XContentType to abstract media format from the REST interfaces. Signed-off-by: Nicholas Walter Knize <nknize@apache.org> (cherry picked from commit 1f4cdd2) Signed-off-by: Andrew Ross <andrross@amazon.com>
Member
Contributor
Author
|
Yes. I'll take care of both. |
nknize
added a commit
to nknize/OpenSearch
that referenced
this pull request
Feb 22, 2023
…rch-project#6218) Refactors various REST requests to use MediaType instead of XContentType to abstract media format from the REST interfaces. Signed-off-by: Nicholas Walter Knize <nknize@apache.org>
nknize
added a commit
that referenced
this pull request
Feb 22, 2023
Rishikesh1159
added a commit
to Rishikesh1159/OpenSearch
that referenced
this pull request
Mar 16, 2023
Rishikesh1159
added a commit
to Rishikesh1159/OpenSearch
that referenced
this pull request
Mar 19, 2023
Rishikesh1159
added a commit
to Rishikesh1159/OpenSearch
that referenced
this pull request
Mar 30, 2023
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Refactors various REST requests to use MediaType instead of XContentType to abstract media format from the REST interfaces.
relates #5910