Skip to content
Snippets Groups Projects
Commit 2b6388f8 authored by Simon Belak's avatar Simon Belak
Browse files

Fix potential race condition where the job gets cleaned up too soon.

parent 9532c572
No related branches found
No related tags found
No related merge requests found
......@@ -7,11 +7,12 @@
(defn result!
"Blocking version of async/result."
[job-id]
(-> #'async/running-jobs
deref ; var
deref ; atom
(get job-id)
deref) ; future
(some-> #'async/running-jobs ; It might be that the job has finished and
; cleand up already, hence some->
deref ; var
deref ; atom
(get job-id)
deref) ; future
(async/result (ComputationJob job-id)))
(def ^:dynamic *max-while-runtime*
......
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