D7356: index: use `index.has_node` in `infinitypush`

marmoute (Pierre-Yves David) phabricator at mercurial-scm.org
Sat Nov 9 05:20:55 UTC 2019


marmoute updated this revision to Diff 17857.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7356?vs=17779&id=17857

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7356/new/

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, indygreg
Cc: mercurial-devel


More information about the Mercurial-devel mailing list