mirror of
https://github.com/corda/corda.git
synced 2025-06-11 20:01:46 +00:00
Merge fix
This commit is contained in:
@ -28,11 +28,10 @@ data class BridgeHandle(
|
|||||||
)
|
)
|
||||||
|
|
||||||
fun startBridgeProcess(bridgePath: Path, debugPort: Int?): Process {
|
fun startBridgeProcess(bridgePath: Path, debugPort: Int?): Process {
|
||||||
return ProcessUtilities.startCordaProcess(
|
return ProcessUtilities.startJavaProcess(
|
||||||
className = "net.corda.bridge.Firewall",
|
className = "net.corda.bridge.Firewall",
|
||||||
arguments = listOf("--base-directory", bridgePath.toString()),
|
arguments = listOf("--base-directory", bridgePath.toString()),
|
||||||
jdwpPort = debugPort,
|
jdwpPort = debugPort,
|
||||||
extraJvmArguments = listOf(),
|
|
||||||
workingDirectory = bridgePath,
|
workingDirectory = bridgePath,
|
||||||
maximumHeapSize = "200m"
|
maximumHeapSize = "200m"
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user