mirror of https://github.com/sbt/sbt.git
fix: serverIdleTimeOut -> serverIdleTimeout
Use consistent name for the option. The variable is named `serverIdleTimeout` and this also seems the proper camelcasing of the words.
This commit is contained in:
parent
2565b8c904
commit
dd1218ba12
|
|
@ -93,7 +93,7 @@ object BasicKeys {
|
||||||
|
|
||||||
val serverIdleTimeout =
|
val serverIdleTimeout =
|
||||||
AttributeKey[Option[FiniteDuration]](
|
AttributeKey[Option[FiniteDuration]](
|
||||||
"serverIdleTimeOut",
|
"serverIdleTimeout",
|
||||||
"If set to a defined value, sbt server will exit if it goes at least the specified duration without receiving any commands.",
|
"If set to a defined value, sbt server will exit if it goes at least the specified duration without receiving any commands.",
|
||||||
10000
|
10000
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue