DISPATCH-451: Clarify policy vhost setting descriptions
Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/2bab3f33 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/2bab3f33 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/2bab3f33 Branch: refs/heads/master Commit: 2bab3f33e2fb7893fe40f3fc850cc0144a45708e Parents: d5e02b8 Author: Chuck Rolke <[email protected]> Authored: Mon Oct 10 16:08:08 2016 -0400 Committer: Chuck Rolke <[email protected]> Committed: Mon Oct 10 16:08:08 2016 -0400 ---------------------------------------------------------------------- .../management/qdrouter.policyRuleset.settings.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/2bab3f33/python/qpid_dispatch/management/qdrouter.policyRuleset.settings.txt ---------------------------------------------------------------------- diff --git a/python/qpid_dispatch/management/qdrouter.policyRuleset.settings.txt b/python/qpid_dispatch/management/qdrouter.policyRuleset.settings.txt index fe2a6f2..da389ff 100644 --- a/python/qpid_dispatch/management/qdrouter.policyRuleset.settings.txt +++ b/python/qpid_dispatch/management/qdrouter.policyRuleset.settings.txt @@ -41,42 +41,42 @@ Until the schema is extended specify embedded maps this document describes the v }, "maxFrameSize": { "type": "integer", - "description": "Largest frame that may be sent on this connection. Zero implies system default. Policy setting overwrites values specified for a listener or connector. (AMQP Open, max-frame-size)", + "description": "Largest frame that may be sent on this connection. Non-zero policy values overwrite values specified for a listener object. (AMQP Open, max-frame-size)", "default": 16384, "required": false, "create": true }, "maxMessageSize": { "type": "integer", - "description": "Largest message size supported by links created on this connection. Zero implies system default. Policy setting overwrites values specified for a listener or connector. (AMQP Attach, max-message-size)", + "description": "[NOT IMPLEMENTED] Largest message size supported by links created on this connection. Non-zero policy values overwrite values specified for a listener object. (AMQP Attach, max-message-size)", "default": 0, "required": false, "create": true }, "maxSessionWindow": { "type": "integer", - "description": "Largest incoming window in octets for sessions created on this connection. Zero implies system default. Policy setting overwrites values specified for a listener or connector. (AMQP Begin, incoming-window)", + "description": "Largest incoming window in octets for sessions created on this connection. Non-zero policy values overwrite values specified for a listener object. (AMQP Begin, incoming-window)", "default": 1638400, "required": false, "create": true }, "maxSessions": { "type": "integer", - "description": "Maximum number of sessions that may be created on this connection. Zero implies system default. Policy setting overwrites values specified for a listener or connector. (AMQP Open, channel-max)", + "description": "Maximum number of sessions that may be created on this connection. Non-zero policy values overwrite values specified for a listener object. (AMQP Open, channel-max)", "default": 32768, "required": false, "create": true }, "maxSenders": { "type": "integer", - "description": "Maximum number of sending links that may be created on this connection. Zero implies system default.", + "description": "Maximum number of sending links that may be created on this connection. Zero disables all sender links.", "default": 2147483647, "required": false, "create": true }, "maxReceivers": { "type": "integer", - "description": "Maximum number of receiving links that may be created on this connection. Zero implies system default.", + "description": "Maximum number of receiving links that may be created on this connection. Zero disables all receiver links.", "default": 2147483647, "required": false, "create": true --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
