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

2019-11-09 Thread marmoute (Pierre-Yves David)
Closed by commit rHGd4a485aa76fc: index: use `index.has_node` in `infinitypush` 
(authored by marmoute).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

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

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
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


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

2019-11-08 Thread marmoute (Pierre-Yves David)
marmoute updated this revision to Diff 17857.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7356?vs=17779=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
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel