Repository: qpid-dispatch Updated Branches: refs/heads/master 47396a924 -> 8c026d01f
DISPATCH-388 - Additional fix. Return the deprecated flag in the json schema dump Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/8c026d01 Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/8c026d01 Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/8c026d01 Branch: refs/heads/master Commit: 8c026d01fe0fd5c2f8c0fa6753c7320c6d64304d Parents: 47396a9 Author: Ganesh Murthy <[email protected]> Authored: Wed Jun 15 15:14:40 2016 -0400 Committer: Ganesh Murthy <[email protected]> Committed: Wed Jun 15 15:14:40 2016 -0400 ---------------------------------------------------------------------- python/qpid_dispatch_internal/management/schema.py | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/8c026d01/python/qpid_dispatch_internal/management/schema.py ---------------------------------------------------------------------- diff --git a/python/qpid_dispatch_internal/management/schema.py b/python/qpid_dispatch_internal/management/schema.py index 51aa97c..caf8f09 100644 --- a/python/qpid_dispatch_internal/management/schema.py +++ b/python/qpid_dispatch_internal/management/schema.py @@ -278,6 +278,7 @@ class AttributeType(object): ('default', self.default), ('required', self.required), ('unique', self.unique), + ('deprecated', self.deprecated), ('description', self.description), ('graph', self.graph) ]) @@ -469,6 +470,7 @@ class EntityType(object): ('operations', self.operations), ('description', self.description or None), ('references', self.references), + ('deprecated', self.deprecated), ('singleton', self.singleton) ]) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
