CORDA-3318: fixed config property names in docs (#5589)

* CORDA-3318: fixed config property names in docs

* CORDA-3318: typo
This commit is contained in:
bpaunescu 2019-10-15 08:57:42 +01:00 committed by Jonathan Locke
parent e6edfe31d9
commit 233abcaf9a

View File

@ -195,20 +195,20 @@ parameters will be accepted without user input. The following parameters with th
:start-after: DOCSTART 1 :start-after: DOCSTART 1
:end-before: DOCEND 1 :end-before: DOCEND 1
This behaviour can be turned off by setting the optional node configuration property ``NetworkParameterAcceptanceSettings.autoAcceptEnabled`` This behaviour can be turned off by setting the optional node configuration property ``networkParameterAcceptanceSettings.autoAcceptEnabled``
to ``false``. For example: to ``false``. For example:
.. sourcecode:: guess .. sourcecode:: guess
... ...
NetworkParameterAcceptanceSettings { networkParameterAcceptanceSettings {
autoAcceptEnabled = false autoAcceptEnabled = false
} }
... ...
It is also possible to switch off this behaviour at a more granular parameter level. This can be achieved by specifying the set of It is also possible to switch off this behaviour at a more granular parameter level. This can be achieved by specifying the set of
``@AutoAcceptable`` parameters that should not be auto-acceptable in the optional ``@AutoAcceptable`` parameters that should not be auto-acceptable in the optional
``NetworkParameterAcceptanceSettings.excludedAutoAcceptableParameters`` node configuration property. ``networkParameterAcceptanceSettings.excludedAutoAcceptableParameters`` node configuration property.
For example, auto-acceptance can be switched off for any updates that change the ``packageOwnership`` map by adding the following to the For example, auto-acceptance can be switched off for any updates that change the ``packageOwnership`` map by adding the following to the
node configuration: node configuration:
@ -216,7 +216,7 @@ node configuration:
.. sourcecode:: guess .. sourcecode:: guess
... ...
NetworkParameterAcceptanceSettings { networkParameterAcceptanceSettings {
excludedAutoAcceptableParameters: ["packageOwnership"] excludedAutoAcceptableParameters: ["packageOwnership"]
} }
... ...