diff options
| author | Ted Ross <tross@apache.org> | 2013-10-10 19:41:01 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2013-10-10 19:41:01 +0000 |
| commit | 21f5e2ec963ac50256bba7644f33f5f4b2126285 (patch) | |
| tree | 25883dc465d26502b32bb9529c87efab97fc2ff6 /qpid/extras/dispatch/python | |
| parent | 94374b4bcdf57dd6186fbeba4787dd9395fb8c83 (diff) | |
| download | qpid-python-21f5e2ec963ac50256bba7644f33f5f4b2126285.tar.gz | |
QPID-5221 - Added a configurable role for connections that constrains their use.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1531084 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/extras/dispatch/python')
| -rw-r--r-- | qpid/extras/dispatch/python/qpid/dispatch/config/schema.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/extras/dispatch/python/qpid/dispatch/config/schema.py b/qpid/extras/dispatch/python/qpid/dispatch/config/schema.py index 1b3fe885cb..7b00000c99 100644 --- a/qpid/extras/dispatch/python/qpid/dispatch/config/schema.py +++ b/qpid/extras/dispatch/python/qpid/dispatch/config/schema.py @@ -57,6 +57,7 @@ config_schema = { 'addr' : (str, 0, "M"), 'port' : (str, 1, "M"), 'label' : (str, None, "", None), + 'role' : (str, None, "", 'normal'), 'sasl-mechanisms' : (str, None, "M"), 'ssl-profile' : (str, None, "E", None), 'require-peer-auth' : (bool, None, "", True), @@ -66,6 +67,7 @@ config_schema = { 'addr' : (str, 0, "M"), 'port' : (str, 1, "M"), 'label' : (str, None, "", None), + 'role' : (str, None, "", 'normal'), 'sasl-mechanisms' : (str, None, "M"), 'ssl-profile' : (str, None, "E", None), 'allow-redirect' : (bool, None, "", True) |
