Skip to content

Commit 87095fe

Browse files
authored
Fix mill server timeout back to 30min (#5620)
Previously it was changed to 30s for debugging and accidentally committed, this just changes it back
1 parent f0dd77e commit 87095fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runner/daemon/src/mill/daemon/MillDaemonMain.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ object MillDaemonMain {
3737
)
3838

3939
val acceptTimeoutMillis =
40-
Try(System.getProperty("mill.server_timeout").toInt).getOrElse(30 * 1000) // 30 minutes
40+
Try(System.getProperty("mill.server_timeout").toInt).getOrElse(30 * 60 * 1000) // 30 minutes
4141

4242
new MillDaemonMain(
4343
daemonDir = os.Path(args0(0)),

0 commit comments

Comments
 (0)