Repository: qpid-dispatch Updated Branches: refs/heads/master d0364ceb8 -> c98df309f
NO-JIRA - Fixed the qdrouter.json to include 'absolute' where path is specified Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/c98df309 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/c98df309 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/c98df309 Branch: refs/heads/master Commit: c98df309f9f9744be04cf418f07e46a15561c3cd Parents: d0364ce Author: Ganesh Murthy <[email protected]> Authored: Mon Jun 13 08:52:18 2016 -0400 Committer: Ganesh Murthy <[email protected]> Committed: Mon Jun 13 08:52:18 2016 -0400 ---------------------------------------------------------------------- python/qpid_dispatch/management/qdrouter.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/c98df309/python/qpid_dispatch/management/qdrouter.json ---------------------------------------------------------------------- diff --git a/python/qpid_dispatch/management/qdrouter.json b/python/qpid_dispatch/management/qdrouter.json index 4787b2b..9180dcb 100644 --- a/python/qpid_dispatch/management/qdrouter.json +++ b/python/qpid_dispatch/management/qdrouter.json @@ -66,24 +66,24 @@ "attributes": { "certDb": { "type": "path", - "description": "The path to the database that contains the public certificates of trusted certificate authorities (CA).", + "description": "The absolute path to the database that contains the public certificates of trusted certificate authorities (CA).", "create": true }, "certFile": { "type": "path", - "description": "The path to the file containing the PEM-formatted public certificate to be used on the local end of any connections using this profile.", + "description": "The absolute path to the file containing the PEM-formatted public certificate to be used on the local end of any connections using this profile.", "create": true }, "keyFile": { "type": "path", - "description": "The path to the file containing the PEM-formatted private key for the above certificate.", + "description": "The absolute path to the file containing the PEM-formatted private key for the above certificate.", "create": true }, "passwordFile": { "type": "path", - "description": "If the above private key is password protected, this is the path to a file containing the password that unlocks the certificate key.", + "description": "If the above private key is password protected, this is the absolute path to a file containing the password that unlocks the certificate key.", "create": true }, @@ -100,7 +100,7 @@ }, "displayNameFile": { "type": "string", - "description": "The path to the file containing the unique id to dispay name mapping", + "description": "The absolute path to the file containing the unique id to dispay name mapping", "create": true }, "sslProfileName": { @@ -666,7 +666,7 @@ }, "trustedCerts": { "type": "path", - "description": "This optional setting can be used to reduce the set of available CAs for client authentication. If used, this setting must provide a path to a PEM file that contains the trusted certificates.", + "description": "This optional setting can be used to reduce the set of available CAs for client authentication. If used, this setting must provide the absolute path to a PEM file that contains the trusted certificates.", "create": true }, "maxFrameSize": { @@ -1342,7 +1342,7 @@ "policyFolder": { "type": "path", "default": "", - "description": "The path to a folder that holds policyRuleset definition .json files. For a small system the rulesets may all be defined in this file. At a larger scale it is better to have the policy files in their own folder and to have none of the rulesets defined here. All rulesets in all .json files in this folder are processed.", + "description": "The absolute path to a folder that holds policyRuleset definition .json files. For a small system the rulesets may all be defined in this file. At a larger scale it is better to have the policy files in their own folder and to have none of the rulesets defined here. All rulesets in all .json files in this folder are processed.", "required": false, "create": true }, --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
