diff options
author | Alan Conway <aconway@apache.org> | 2006-09-27 19:50:23 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2006-09-27 19:50:23 +0000 |
commit | caca23c5dc055d985fecfe188573104bc707ad9d (patch) | |
tree | 154c0bbd4c7bca70080de28116b5654491657906 /python/qpid/peer.py | |
parent | 9d718c2348708b0b27ce9fb9fcbf05c4b0a997cc (diff) | |
download | qpid-python-caca23c5dc055d985fecfe188573104bc707ad9d.tar.gz |
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@450556 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/peer.py')
-rw-r--r-- | python/qpid/peer.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/python/qpid/peer.py b/python/qpid/peer.py index 31d3d24f5f..3085e24247 100644 --- a/python/qpid/peer.py +++ b/python/qpid/peer.py @@ -146,7 +146,6 @@ class Channel: def invoke(self, method, args, content = None): if self.closed: raise Closed(self.reason) - frame = Frame(self.id, Method(method, *args)) self.outgoing.put(frame) @@ -181,7 +180,7 @@ class Channel: def write_content(self, klass, content, queue): size = content.size() - header = Frame(self.id, Header(klass, content.weight(), size)) + header = Frame(self.id, Header(klass, content.weight(), size, **content.properties)) queue.put(header) for child in content.children: self.write_content(klass, child, queue) |