me
/
guix
Archived
1
0
Fork 0

http-client: Don't drop failed query when reconnecting.

Reported by Christopher Baines <mail@cbaines.net>.

* guix/http-client.scm (http-multiple-get): Change 2nd argument to
'drop' to PROCESSED when (false-if-networking-error ...) returns #f.
master
Ludovic Courtès 2021-03-28 22:04:01 +02:00
parent 58452d08ff
commit 673e5276f6
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ returning."
(#f
(close-port p)
(connect #f ; try again
(drop requests (+ 1 processed))
(drop requests processed)
result)))))))))