CORDA-3031 Constrain max heap size for Spring boot processes (#5234)

* Constrain max heap size for Spring boot processes

* Increase allowance to 256M
This commit is contained in:
Dominic Fox 2019-06-20 18:13:57 +01:00 committed by Rick Parker
parent 4e835d5483
commit dd98461d87

View File

@ -89,7 +89,8 @@ data class SpringBootDriverDSL(private val driverDSL: DriverDSLImpl) : InternalD
"--corda.host=${handle.rpcAddress}",
"--corda.user=${handle.rpcUsers.first().username}",
"--corda.password=${handle.rpcUsers.first().password}"
)
),
maximumHeapSize = "256M"
)
}
}