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
curl from Internet Archive frequently returns empty, which results in meaningless empty lines being printed on the log. In most cases the output is like this:
2025-02-18 12:16:43 [Status request failed] https://xxx
(an empty line here)
2025-02-18 12:16:53 [Request failed] https://xxx
(another empty line here)
There lines are for showing info/error from IA. Can we print something other than empty lines here? Related codes:
if [[ "$request"=~"429 Too Many Requests" ]] || [[ "$request"=="" ]];then
echo"$request"
Extra info:
I did some research. There empty response seems comes from SSL Error before/during HTTP request. I tried sending frequent HTTP requests to IA by Python and kept getting this error:
HTTPSConnectionPool(host='web.archive.org', port=443): Max retries exceeded with url: /save/status/user (Caused by SSLError(SSLEOFError(8, '[SSL: UNEXPECTED_EOF_WHILE_READING] EOF occurred in violation of protocol (_ssl.c:1000)')))
The text was updated successfully, but these errors were encountered:
curl
from Internet Archive frequently returns empty, which results in meaningless empty lines being printed on the log. In most cases the output is like this:There lines are for showing info/error from IA. Can we print something other than empty lines here? Related codes:
wayback-machine-spn-scripts/spn.sh
Lines 295 to 297 in 88d60d1
wayback-machine-spn-scripts/spn.sh
Lines 431 to 436 in 88d60d1
Extra info:
I did some research. There empty response seems comes from SSL Error before/during HTTP request. I tried sending frequent HTTP requests to IA by Python and kept getting this error:
The text was updated successfully, but these errors were encountered: