mirror of
https://github.com/corda/corda.git
synced 2025-01-18 18:56:28 +00:00
Description id docs and change log.
This commit is contained in:
parent
43ead64240
commit
c28a16cb41
@ -34,6 +34,8 @@ from the previous milestone release.
|
||||
|
||||
* Introduced a placeholder for custom properties within ``node.conf``; the property key is "custom".
|
||||
|
||||
* Property keys with double quotes (e.g. `"key"`) in ``node.conf`` are no longer allowed, for rationale refer to :doc:`corda-configuration-file`.
|
||||
|
||||
* java.math.BigInteger serialization support added.
|
||||
|
||||
* java.security.cert.CRLReason added to the default Whitelist.
|
||||
|
@ -22,7 +22,14 @@ Format
|
||||
The Corda configuration file uses the HOCON format which is superset of JSON. Please visit
|
||||
`<https://github.com/typesafehub/config/blob/master/HOCON.md>`_ for further details.
|
||||
|
||||
Please do NOT use double quotes in configuration keys.
|
||||
Please do NOT use double quotes (``"``) in configuration keys.
|
||||
|
||||
Node will throw exception `Config files should not contain \" in property names. Please fix: [key]`
|
||||
when it founds double quotes around keys.
|
||||
This prevents configuration errors when mixing keys containing ``.`` wrapped with double quotes and without them
|
||||
e.g.:
|
||||
The property `"dataSourceProperties.dataSourceClassName" = "val"` in ``reference.conf``
|
||||
would be not overwritten by the property `dataSourceProperties.dataSourceClassName = "val2"` in ``node.conf``.
|
||||
|
||||
Defaults
|
||||
--------
|
||||
|
Loading…
Reference in New Issue
Block a user