From 28bb2c5583a4747594c869af46593f223344a043 Mon Sep 17 00:00:00 2001 From: "Rafael H. Schloming" Date: Fri, 7 Mar 2008 17:56:41 +0000 Subject: send an empty frame for an empty segment git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@634763 13f79535-47bb-0310-9956-ffa450edef68 --- python/cpp_failing_0-10.txt | 2 -- python/qpid/assembler.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'python') diff --git a/python/cpp_failing_0-10.txt b/python/cpp_failing_0-10.txt index 824967762b..3d00313d2d 100644 --- a/python/cpp_failing_0-10.txt +++ b/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/python/qpid/assembler.py b/python/qpid/assembler.py index fe78baaceb..1a480698c8 100644 --- a/python/qpid/assembler.py +++ b/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:] -- cgit v1.2.1