Skip to content
Snippets Groups Projects
Commit 498697fe authored by Boris Feld's avatar Boris Feld
Browse files

exchange: propagate the subfunctions return

The parts generator can return a callback to handle server reply. We should
propagate the return for correctness.
parent a52e5604
No related branches found
No related tags found
No related merge requests found
......@@ -813,5 +813,5 @@
hasphaseheads = 'heads' in b2caps.get('phases', ())
if hasphaseheads and not legacyphase:
_pushb2phaseheads(pushop, bundler)
return _pushb2phaseheads(pushop, bundler)
elif haspushkey:
......@@ -817,5 +817,5 @@
elif haspushkey:
_pushb2phasespushkey(pushop, bundler)
return _pushb2phasespushkey(pushop, bundler)
def _pushb2phaseheads(pushop, bundler):
"""push phase information through a bundle2 - binary part"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment