mirror of
https://github.com/corda/corda.git
synced 2024-12-20 05:28:21 +00:00
[M10 Fixes] - remote debug flag fix (#494)
(cherry picked from commit bf90b14
)
This commit is contained in:
parent
51c7f6ca30
commit
b0bb7cc606
@ -26,7 +26,7 @@ object ProcessUtilities {
|
||||
val separator = System.getProperty("file.separator")
|
||||
val classpath = System.getProperty("java.class.path")
|
||||
val javaPath = System.getProperty("java.home") + separator + "bin" + separator + "java"
|
||||
val debugPortArgument = if (jdwpPort == null) {
|
||||
val debugPortArgument = if (jdwpPort != null) {
|
||||
listOf("-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=$jdwpPort")
|
||||
} else {
|
||||
emptyList()
|
||||
|
Loading…
Reference in New Issue
Block a user