##// END OF EJS Templates
bundle2: pass the operation source down to the changegroup...
Raphaël Gomès -
r47269:83ac7c91 default
parent child Browse files
Show More
@@ -2001,7 +2001,7 b' def handlechangegroup(op, inpart):'
2001 op,
2001 op,
2002 cg,
2002 cg,
2003 tr,
2003 tr,
2004 b'bundle2',
2004 op.source,
2005 b'bundle2',
2005 b'bundle2',
2006 expectedtotal=nbchangesets,
2006 expectedtotal=nbchangesets,
2007 **extrakwargs
2007 **extrakwargs
@@ -2083,7 +2083,7 b' def handleremotechangegroup(op, inpart):'
2083 raise error.Abort(
2083 raise error.Abort(
2084 _(b'%s: not a bundle version 1.0') % util.hidepassword(raw_url)
2084 _(b'%s: not a bundle version 1.0') % util.hidepassword(raw_url)
2085 )
2085 )
2086 ret = _processchangegroup(op, cg, tr, b'bundle2', b'bundle2')
2086 ret = _processchangegroup(op, cg, tr, op.source, b'bundle2')
2087 if op.reply is not None:
2087 if op.reply is not None:
2088 # This is definitely not the final form of this
2088 # This is definitely not the final form of this
2089 # return. But one need to start somewhere.
2089 # return. But one need to start somewhere.
General Comments 0
You need to be logged in to leave comments. Login now