Skip to content

Commit 13f9287

Browse files
committed
must always use the assigned dispatch exec
1 parent 8ca8625 commit 13f9287

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main/clojure/clojure/core/async/impl/dispatch.clj

+4-2
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,9 @@
105105
(if (= workload :core-async-dispatch)
106106
(executor-for :io)
107107
(default-executor-factory workload)))
108-
(default-executor-factory workload)))))
108+
(if (= workload :core-async-dispatch)
109+
(executor-for :io)
110+
(default-executor-factory workload))))))
109111

110112
(defn exec
111113
[^Runnable r workload]
@@ -117,4 +119,4 @@
117119
[^Runnable r]
118120
(if (-> r meta :on-caller?)
119121
(try (.run r) (catch Throwable t (ex-handler t)))
120-
(exec r :io)))
122+
(exec r :core-async-dispatch)))

0 commit comments

Comments
 (0)