mirror of https://github.com/sbt/sbt.git
clarify intent
This commit is contained in:
parent
86c59d8f72
commit
d267b6fda5
|
|
@ -38,6 +38,7 @@ private[sbt] class ParallelResolveEngine(settings: ResolveEngineSettings,
|
||||||
val allDownloads = dependencies.par.flatMap { dep =>
|
val allDownloads = dependencies.par.flatMap { dep =>
|
||||||
if (!(dep.isCompletelyEvicted || dep.hasProblem) &&
|
if (!(dep.isCompletelyEvicted || dep.hasProblem) &&
|
||||||
dep.getModuleRevision != null) {
|
dep.getModuleRevision != null) {
|
||||||
|
//don't block in global ec to avoid deadlocks
|
||||||
scala.concurrent.blocking {
|
scala.concurrent.blocking {
|
||||||
ParArray(downloadNodeArtifacts(dep, artifactFilter, options))
|
ParArray(downloadNodeArtifacts(dep, artifactFilter, options))
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue