Skip to content

Commit 04541fb

Browse files
author
dnolen
committed
CLJS-1948: Possible race condition in compiler w/ parallel-build true
the issue was that duplicate compiler inputs could appear. We were using distinct before but for various reasons this is not good enough. We now use :provides as the uniquely identifying bit about a compiler input.
1 parent 46dcd22 commit 04541fb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/clojure/cljs/js_deps.cljc

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
;; You must not remove this notice, or any other, from this software.
88

99
(ns cljs.js-deps
10-
(:require [clojure.java.io :as io]
10+
(:require [cljs.util :refer [distinct-by]]
11+
[clojure.java.io :as io]
1112
[clojure.string :as string])
1213
(:import [java.io File]
1314
[java.net URL URLClassLoader]
@@ -194,7 +195,7 @@ case."
194195
[coll]
195196
(let [state (build-index (map pack-string coll))]
196197
(map unpack-string
197-
(distinct
198+
(distinct-by :provides
198199
(:order (reduce dependency-order-visit (assoc state :order []) (keys state)))))))
199200

200201

0 commit comments

Comments
 (0)