Skip to content
Snippets Groups Projects
Unverified Commit 761443bc authored by Mathieu Othacehe's avatar Mathieu Othacehe
Browse files

Do not use par-map in fiberized context.

Fixes: <https://issues.guix.gnu.org/43757>.

* src/cuirass/base.scm (fetch-inputs): Call par-map from a separate thread as
this call is not suspendable.
parent af84a008
No related branches found
No related tags found
No related merge requests found
......@@ -745,7 +745,8 @@ by PRODUCT-SPECS."
(fetch-input store input
#:writable-copy? (compile? input)))))
inputs))
(results (par-map %non-blocking thunks)))
(results (non-blocking
(par-map %non-blocking thunks))))
(map (lambda (checkout)
(log-message "fetched input '~a' of spec '~a' (commit ~s)"
(assq-ref checkout #:input)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment