Fix fixed size thread pool lifetimes
Some checks failed
/ test (push) Has been cancelled

This commit is contained in:
Christopher Baines 2025-11-19 13:18:39 +00:00
parent 05ad83c703
commit 95200eccfd
2 changed files with 38 additions and 3 deletions

View file

@ -343,7 +343,7 @@ from there, or #f if that would be an empty string."
expire-on-exception?)
#t
(if lifetime
(if (<= 1 lifetime)
(if (<= lifetime 1)
#t
(loop (- lifetime 1)))
(loop lifetime)))))))))