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:
Ethan Atkins 2019-05-02 14:06:53 -07:00
parent bc21db2864
commit 7f719d7233
1 changed files with 0 additions and 1 deletions

View File

@ -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
}