diff options
author | colin <colin@cicadas.surf> | 2024-01-29 19:58:33 -0800 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2024-01-29 19:58:33 -0800 |
commit | a243ceab6cd3d17fffb115a253e28a21f2ebe3c6 (patch) | |
tree | 4449c1926b156a187ccbd5ace649858761df4f7e /fussy.lisp | |
parent | 06f1c5825254a6806ac34fa8b2797fceaca6c7c9 (diff) |
handle errors during archive update
Diffstat (limited to 'fussy.lisp')
-rw-r--r-- | fussy.lisp | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -24,8 +24,8 @@ contents." (retries 10)) "Fetch the package archive from ARCHIVE, a url, and read it in using the emacs' reader readtable." - ;; TODO: HANDLE HTTP ERRORS, HANDLE TIMEOUT, HANDLE READ ERRORS (when (plusp retries) + (fussy-log "Fetching archive ~a~%" archive) (handler-case (multiple-value-bind (stream status) (dexador:get archive :want-stream t) (when (= 200 status) @@ -33,9 +33,14 @@ the emacs' reader readtable." (*readtable* (emacs-reader-readtable))) (read stream)))) (usocket:ns-host-not-found-error () - (fussy-log "Host Not Found: ~a~%Retrying in ~a seconds...~%" + (fussy-log "Error whild fetching archive.~%Host Not Found: ~a~%Retrying in ~a seconds...~%" archive +retry-wait+) (sleep +retry-wait+) + (fetch-emacs-archive archive (1- retries))) + (error (e) + (fussy-log "Error while fetching archive: ~a~%Retrying in ~a seconds...~%" + e +retry-wait+) + (sleep +retry-wait+) (fetch-emacs-archive archive (1- retries)))))) (defclass/std theme-pkg (db:store-object) |