opensearch-project / OpenSearch

🔎 Open source distributed and RESTful search engine.
https://opensearch.org/docs/latest/opensearch/index/
Apache License 2.0
9.83k stars 1.83k forks source link

[Backport] [1.x] Update to Netty 4.1.115.Final (#16661) (#16666) #16672

Closed reta closed 2 days ago

reta commented 3 days ago

Backport pf https://github.com/opensearch-project/OpenSearch/pull/16661 to 1.x

github-actions[bot] commented 3 days ago

:x: Gradle check result for 334930e49fc405c20af99165f08b94181f382ad4: FAILURE

Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change?

github-actions[bot] commented 3 days ago

:x: Gradle check result for 26d5b2858be65c30b1bcde2bb4bf00c9a4aeff08: ABORTED

Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change?

github-actions[bot] commented 3 days ago

:x: Gradle check result for 85631e49db7b9f85911b42abd8f09e1ad8ab8581: ABORTED

Please examine the workflow log, locate, and copy-paste the failure(s) below, then iterate to green. Is the failure a flaky test unrelated to your change?

github-actions[bot] commented 3 days ago

:white_check_mark: Gradle check result for 036285dcb58a28c513c6a28a280d1c3c3a31bc74: SUCCESS

codecov[bot] commented 3 days ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Please upload report for BASE (1.x@ad6dff4). Learn more about missing BASE report. Report is 1 commits behind head on 1.x.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## 1.x #16672 +/- ## ====================================== Coverage ? 77.54% Complexity ? 58745 ====================================== Files ? 4223 Lines ? 253572 Branches ? 38700 ====================================== Hits ? 196637 Misses ? 40911 Partials ? 16024 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.


🚨 Try these New Features:

reta commented 3 days ago

@andrross @peternied could you pleas help me here folks? thank you!

reta commented 2 days ago

@dblock mind this one as well please?

opensearch-trigger-bot[bot] commented 2 days ago

The backport to 1.3 failed:

The process '/usr/bin/git' failed with exit code 128

To backport manually, run these commands in your terminal:

# Navigate to the root of your repository
cd $(git rev-parse --show-toplevel)
# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/OpenSearch/backport-1.3 1.3
# Navigate to the new working tree
pushd ../.worktrees/OpenSearch/backport-1.3
# Create a new branch
git switch --create backport/backport-16672-to-1.3
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 d4a76cd499a749005c8b6b4e733ac2a93b64bd7d
# Push it to GitHub
git push --set-upstream origin backport/backport-16672-to-1.3
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/OpenSearch/backport-1.3

Then, create a pull request where the base branch is 1.3 and the compare/head branch is backport/backport-16672-to-1.3.