Skip to content

Commit

Permalink
Revert "Revert default CURLOPT_PIPEWAIT to false"
Browse files Browse the repository at this point in the history
This reverts commit 0288b3f.
  • Loading branch information
jeroen committed Jan 22, 2025
1 parent ca5d30e commit 736dc20
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
6.2.0
- Revert default CURLOPT_PIPEWAIT to false
- Fix LTO error for R_multi_setopt
- Fix parsing of #fragment links in curl_parse() (#366)

Expand Down
3 changes: 1 addition & 2 deletions src/handle.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,7 @@ static void set_handle_defaults(reference *ref){
assert(curl_easy_setopt(handle, CURLOPT_DEBUGFUNCTION, default_verbose_cb));

/* Prefer using multiplex when possible */
/* Does not work well: /~https://github.com/curl/curl/issues/15838 */
//assert(curl_easy_setopt(handle, CURLOPT_PIPEWAIT, 1L));
assert(curl_easy_setopt(handle, CURLOPT_PIPEWAIT, 1L));
}

SEXP R_new_handle(void){
Expand Down

0 comments on commit 736dc20

Please sign in to comment.