This commit is contained in:
Ethan Atkins 2019-06-08 14:33:39 -07:00
parent 10ca452bd8
commit a6bc7b1c76
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ object SysProp {
def supershell: Boolean = color && getOrTrue("sbt.supershell")
def supersheelSleep: Long = long("sbt.supershell.sleep", 100L)
def supershellSleep: Long = long("sbt.supershell.sleep", 100L)
def defaultUseCoursier: Boolean = {
val coursierOpt = booleanOpt("sbt.coursier")

View File

@ -23,7 +23,7 @@ private[sbt] final class TaskProgress(log: ManagedLogger)
with ExecuteProgress[Task] {
private[this] val lastTaskCount = new AtomicInteger(0)
private[this] val currentProgressThread = new AtomicReference[Option[ProgressThread]](None)
private[this] val sleepDuration = SysProp.supersheelSleep
private[this] val sleepDuration = SysProp.supershellSleep
private[this] final class ProgressThread
extends Thread("task-progress-report-thread")
with AutoCloseable {