Avoid errors about returning no values from a exception handler
Some checks are pending
/ test (push) Waiting to run
Some checks are pending
/ test (push) Waiting to run
This commit is contained in:
parent
9cce89fc01
commit
8100d36aa5
1 changed files with 3 additions and 2 deletions
|
|
@ -558,7 +558,8 @@
|
||||||
(lambda (exn)
|
(lambda (exn)
|
||||||
;; This can happen if the resource pool is destroyed very
|
;; This can happen if the resource pool is destroyed very
|
||||||
;; quickly
|
;; quickly
|
||||||
(unless (resource-pool-destroyed-error? exn)
|
(if (resource-pool-destroyed-error? exn)
|
||||||
|
#f
|
||||||
(raise-exception exn)))
|
(raise-exception exn)))
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(with-parallelism-limiter
|
(with-parallelism-limiter
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue