mirror of
https://github.com/corda/corda.git
synced 2025-01-29 23:54:07 +00:00
CORDA-3279 Change single quotes to double quotes fixes node's shutdown (#5611)
A ConfigException$Parse would be thrown at CordaCaplet#parseConfigFile. com.typesafe.config.ConfigFactory needs ':' to be included in a double quoted and not in a single quoted string.
This commit is contained in:
parent
df8cc7282f
commit
e2836b1106
@ -51,7 +51,7 @@ anything set earlier.
|
|||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
custom = {
|
custom = {
|
||||||
jvmArgs: [ '-Xmx1G', '-XX:+UseG1GC' ]
|
jvmArgs: [ "-Xmx1G", "-XX:+UseG1GC" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
Note that this will completely replace any defaults set by capsule above, not just the flags that are set here, so if you use this
|
Note that this will completely replace any defaults set by capsule above, not just the flags that are set here, so if you use this
|
||||||
@ -85,7 +85,7 @@ anything set earlier.
|
|||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
|
|
||||||
custom = {
|
custom = {
|
||||||
jvmArgs: [ '-Xmx1G', '-XX:+UseG1GC', '-XX:-HeapDumpOnOutOfMemoryError' ]
|
jvmArgs: [ "-Xmx1G", "-XX:+UseG1GC", "-XX:-HeapDumpOnOutOfMemoryError" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user