Mercurial > hg
changeset 34102:dbf598196f05
changegroup: remove external uses of getbundler
Now that makestream and makechangegroup are the primary creation methods for
changegroups, let's get rid of this rogue use of getbundler and getsubsetraw.
Differential Revision: https://phab.mercurial-scm.org/D670
author | Durham Goode <durham@fb.com> |
---|---|
date | Sun, 10 Sep 2017 18:51:31 -0700 |
parents | 5ede882c249c |
children | 92f1e2be8ab6 |
files | mercurial/exchange.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/exchange.py Sun Sep 10 18:50:12 2017 -0700 +++ b/mercurial/exchange.py Sun Sep 10 18:51:31 2017 -0700 @@ -1595,8 +1595,8 @@ raise ValueError(_('unsupported getbundle arguments: %s') % ', '.join(sorted(kwargs.keys()))) outgoing = _computeoutgoing(repo, heads, common) - bundler = changegroup.getbundler('01', repo, bundlecaps) - return changegroup.getsubsetraw(repo, outgoing, bundler, source) + return changegroup.makestream(repo, outgoing, '01', source, + bundlecaps=bundlecaps) # bundle20 case b2caps = {}