Description id docs and change log.

This commit is contained in:
szymonsztuka 2018-03-28 17:09:42 +01:00
parent 43ead64240
commit c28a16cb41
2 changed files with 10 additions and 1 deletions

View File

@ -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.

View File

@ -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
--------