-
Notifications
You must be signed in to change notification settings - Fork 735
http_gateway/curl: use correct enum #28315
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
http_gateway/curl: use correct enum #28315
Conversation
Currently cosmetic (only low bits tested and they match)
|
🟢 |
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.
Pull Request Overview
This PR fixes a bug in the HTTP gateway's stream handling code by correcting an incorrect libcurl constant used for pausing stream reception. The change replaces CURL_WRITEFUNC_PAUSE (which is not a valid constant for curl_easy_pause) with the correct CURLPAUSE_RECV constant.
- Corrected the curl pause constant from
CURL_WRITEFUNC_PAUSEtoCURLPAUSE_RECVwhen stopping stream reception
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
|
⚪ ⚪ Ya make output | Test bloat | Test bloat
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
(cherry picked from commit f8c0b07)
(cherry picked from commit f8c0b07)
Currently cosmetic (only low bits tested and they match)
Changelog entry
...
Changelog category
Description for reviewers
...