D7356: index: use `index.has_node` in `infinitypush`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Fri Nov 8 16:29:07 UTC 2019
marmoute created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.
REPOSITORY
rHG Mercurial
REVISION DETAIL
https://phab.mercurial-scm.org/D7356
AFFECTED FILES
hgext/infinitepush/__init__.py
CHANGE DETAILS
diff --git a/hgext/infinitepush/__init__.py b/hgext/infinitepush/__init__.py
--- a/hgext/infinitepush/__init__.py
+++ b/hgext/infinitepush/__init__.py
@@ -548,7 +548,7 @@
allbundlestocleanup = []
try:
for head in heads:
- if head not in repo.changelog.nodemap:
+ if not repo.changelog.index.has_node(head):
if head not in nodestobundle:
newbundlefile = common.downloadbundle(repo, head)
bundlepath = b"bundle:%s+%s" % (repo.root, newbundlefile)
To: marmoute, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list