mirror of
https://github.com/corda/corda.git
synced 2025-02-21 09:51:57 +00:00
Warning timer thread should run as a daemon (#3450)
This commit is contained in:
parent
7e05e373d7
commit
66cb0e389b
@ -77,7 +77,7 @@ class NetworkBootstrapper
|
|||||||
val numParallelProcesses = Runtime.getRuntime().availableProcessors()
|
val numParallelProcesses = Runtime.getRuntime().availableProcessors()
|
||||||
val timePerNode = 40.seconds // On the test machine, generating the node info takes 7 seconds for a single node.
|
val timePerNode = 40.seconds // On the test machine, generating the node info takes 7 seconds for a single node.
|
||||||
val tExpected = maxOf(timePerNode, timePerNode * nodeDirs.size.toLong() / numParallelProcesses.toLong())
|
val tExpected = maxOf(timePerNode, timePerNode * nodeDirs.size.toLong() / numParallelProcesses.toLong())
|
||||||
val warningTimer = Timer("WarnOnSlowMachines", false).schedule(tExpected.toMillis()) {
|
val warningTimer = Timer("WarnOnSlowMachines", true).schedule(tExpected.toMillis()) {
|
||||||
println("... still waiting. If this is taking longer than usual, check the node logs.")
|
println("... still waiting. If this is taking longer than usual, check the node logs.")
|
||||||
}
|
}
|
||||||
val executor = Executors.newFixedThreadPool(numParallelProcesses)
|
val executor = Executors.newFixedThreadPool(numParallelProcesses)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user