# HG changeset patch # User Alexis S. L. Carvalho # Date 1200772876 7200 # Node ID 0136d7f58982cfd3b595c8441857a8002a6dbff3 # Parent 3afbd82a6c82cb0090bcb8b7e11b928e3215b5fd allow the creation of bundles with empty changelog/manifest chunks diff -r 3afbd82a6c82 -r 0136d7f58982 mercurial/changegroup.py --- a/mercurial/changegroup.py Sat Jan 19 18:01:16 2008 -0200 +++ b/mercurial/changegroup.py Sat Jan 19 18:01:16 2008 -0200 @@ -80,9 +80,13 @@ # in case of sshrepo because we don't know the end of the stream # an empty chunkiter is the end of the changegroup + # a changegroup has at least 2 chunkiters (changelog and manifest). + # after that, an empty chunkiter is the end of the changegroup empty = False - while not empty: + count = 0 + while not empty or count <= 2: empty = True + count += 1 for chunk in chunkiter(cg): empty = False fh.write(z.compress(chunkheader(len(chunk))))