File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/clojure/clojure/core Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -463,13 +463,13 @@ to catch and handle."
463
463
(#'clojure.core.async.impl.go/go-impl &env body))
464
464
465
465
(defonce ^ExecutorService mixed-executor
466
- (Executors/newCachedThreadPool (conc/counted-thread-factory " async-mixed-thread- %d" true )))
466
+ (Executors/newCachedThreadPool (conc/counted-thread-factory " async-mixed-%d" true )))
467
467
468
468
(defonce ^ExecutorService io-executor
469
- (Executors/newCachedThreadPool (conc/counted-thread-factory " async-io-thread- %d" true )))
469
+ (Executors/newCachedThreadPool (conc/counted-thread-factory " async-io-%d" true )))
470
470
471
471
(defonce ^ExecutorService compute-executor
472
- (Executors/newFixedThreadPool 8 (conc/counted-thread-factory " async-compute-thread -%d" true )))
472
+ (Executors/newCachedThreadPool (conc/counted-thread-factory " async-compute-%d" true )))
473
473
474
474
(defn thread-call
475
475
" Executes f in another thread, returning immediately to the calling
You can’t perform that action at this time.
0 commit comments