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:
kyriathar 2019-10-23 10:01:24 +01:00 committed by Anthony Keenan
parent df8cc7282f
commit e2836b1106

View File

@ -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" ]
} }