summaryrefslogtreecommitdiff
path: root/qpid/python
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2008-03-07 17:56:41 +0000
committerRafael H. Schloming <rhs@apache.org>2008-03-07 17:56:41 +0000
commitc8c75599115f4c8e8d610f16aaee77f1aed9324c (patch)
treedf649569ddc200cd15ca83d6fe0dbe034cb9d475 /qpid/python
parentb61f65b395e220c76ee207d1ce42ed474571d5e5 (diff)
downloadqpid-python-c8c75599115f4c8e8d610f16aaee77f1aed9324c.tar.gz
send an empty frame for an empty segment
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@634763 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python')
-rw-r--r--qpid/python/cpp_failing_0-10.txt2
-rw-r--r--qpid/python/qpid/assembler.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/qpid/python/cpp_failing_0-10.txt b/qpid/python/cpp_failing_0-10.txt
index 824967762b..3d00313d2d 100644
--- a/qpid/python/cpp_failing_0-10.txt
+++ b/qpid/python/cpp_failing_0-10.txt
@@ -63,5 +63,3 @@ tests_0-10.queue.QueueTests.test_delete_simple
tests_0-10.queue.QueueTests.test_purge
tests_0-10.queue.QueueTests.test_bind
tests_0-10.queue.QueueTests.test_unbind_headers
-tests_0-10.exchange.RecommendedTypesRuleTests.testTopic
-tests_0-10.exchange.RequiredInstancesRuleTests.testAmqTopic
diff --git a/qpid/python/qpid/assembler.py b/qpid/python/qpid/assembler.py
index fe78baaceb..1a480698c8 100644
--- a/qpid/python/qpid/assembler.py
+++ b/qpid/python/qpid/assembler.py
@@ -96,7 +96,7 @@ class Assembler(Framer):
remaining = segment.payload
first = True
- while remaining:
+ while first or remaining:
payload = remaining[:self.max_payload]
remaining = remaining[self.max_payload:]