-
Notifications
You must be signed in to change notification settings - Fork 25
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
[Bug]: Library downloadBuildManifest
error curl: (23) Failed writing body (0 != 4804)
#468
Conversation
Probably need to update the version as well? Thanks. |
It can go into this 6.7.2 version Peter #467. Coming to tests I dont see any tests added for |
869972b
to
13d57a4
Compare
Signed-off-by: Prudhvi Godithi <[email protected]>
Updated the test files @peterzhuamazon. |
downloadBuildManifest
error curl: (23) Failed writing body (0 != 4804)
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #468 +/- ##
=========================================
Coverage 84.26% 84.26%
Complexity 80 80
=========================================
Files 106 106
Lines 521 521
Branches 61 61
=========================================
Hits 439 439
Misses 26 26
Partials 56 56 ☔ View full report in Codecov by Sentry. |
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-6.x 6.x
# Navigate to the new working tree
pushd ../.worktrees/backport-6.x
# Create a new branch
git switch --create backport/backport-468-to-6.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 7ddabf2ced8ea07d2da59857ec6fc9a49c08a27f
# Push it to GitHub
git push --set-upstream origin backport/backport-468-to-6.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/backport-6.x Then, create a pull request where the |
Description
This will ensure the the path exists (either folder or file) before writing the curl output.
With the fix
Issues Resolved
opensearch-project/opensearch-build#4894
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.