From patchwork Fri Mar 30 19:53:39 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D2957: infinitepush: don't wrap bundle2.processparts while calling `hg unbundle` From: phabricator X-Patchwork-Id: 30007 Message-Id: To: mercurial-devel@mercurial-scm.org Date: Fri, 30 Mar 2018 19:53:39 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHGe5cd0ef5c362: infinitepush: don't wrap bundle2.processparts while calling `hg unbundle` (authored by pulkit, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D2957?vs=7340&id=7429 REVISION DETAIL https://phab.mercurial-scm.org/D2957 AFFECTED FILES hgext/infinitepush/__init__.py CHANGE DETAILS To: pulkit, #hg-reviewers, indygreg Cc: indygreg, mercurial-devel diff --git a/hgext/infinitepush/__init__.py b/hgext/infinitepush/__init__.py --- a/hgext/infinitepush/__init__.py +++ b/hgext/infinitepush/__init__.py @@ -869,6 +869,13 @@ return logger def processparts(orig, repo, op, unbundler): + + # make sure we don't wrap processparts in case of `hg unbundle` + tr = repo.currenttransaction() + if tr: + if tr.names[0].startswith('unbundle'): + return orig(repo, op, unbundler) + if unbundler.params.get('infinitepush') != 'True': return orig(repo, op, unbundler)