You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to have per-feed a specific curl args set? I've noticed that some sites, with --compressed argument and http2, will return curl: (23) Failed writing received data to disk/application, probably due to non-conforming web server. For example:
# works
$ curl --compressed https://news.ycombinator.com/rss >/dev/null
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 11404 0 11404 0 0 14087 0 --:--:-- --:--:-- --:--:-- 14079
# fails, but looks like all content is downloaded
$ curl --compressed https://www.klix.ba/rss >/dev/null
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 7193 0 7193 0 0 42774 0 --:--:-- --:--:-- --:--:-- 42815
curl: (23) Failed writing received data to disk/application
# but this works
$ curl --compressed --http1.1 https://www.klix.ba/rss >/dev/null
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 7193 0 7193 0 0 44618 0 --:--:-- --:--:-- --:--:-- 44401
Is there a way to have per-feed a specific curl args set? I've noticed that some sites, with
--compressed
argument and http2, will returncurl: (23) Failed writing received data to disk/application
, probably due to non-conforming web server. For example:curl version where this happens:
but it works with older curl version, like:
Funny thing is that Emacs 29.3 url package works without problems, with
(setq elfeed-use-curl nil)
set.The text was updated successfully, but these errors were encountered: