mirror of https://github.com/sbt/sbt.git
Remove unnecessary sleep
I'm not sure what the previous purpose of this was, but syncTo is blocking so this just seems to add 100ms to the run task startup time.
This commit is contained in:
parent
bc21db2864
commit
7f719d7233
|
|
@ -209,7 +209,6 @@ private[sbt] abstract class AbstractBackgroundJobService extends BackgroundJobSe
|
|||
}
|
||||
val xs = (products.toVector map { syncTo(workingDirectory / "target") }) ++
|
||||
((full diff products) map { syncTo(serviceTempDir / "target") })
|
||||
Thread.sleep(100)
|
||||
xs
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue