Comment 13 for bug 437626

Revision history for this message
Benoit Pierre (benoit.pierre) wrote : Re: exceptions.AssertionError: second push failed to complete a fetch set

I get this after trying to branch a stacked branch into an empty repository. On the remote side:

repo/ <- shared repo (1.6, no trees)
repo/trunk <- branch
repo/user <- shared repo (1.6 no trees)
repo/user/feature-branch <- branch using repo/user stacked on repo/trunk

On my side:

bzr init-repo --no-trees --1.6 tmp
cd tmp
bzr branch bzr+ssh://remote/repo/user/feature-branch

=> ERROR: exceptions.AssertionError: second push failed to complete a fetch

Now, if I do the following I can get my branch:

rm -rf feature-branch
bzr branch bzr+ssh://remote/repo/trunk
bzr branch bzr+ssh://remote/repo/user/feature-branch

Tested with bzr-2.0.0 on both sides.