D7323: index: use `index.has_node` in `revlog.addrevision`
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sat Nov 9 08:39:54 UTC 2019
Closed by commit rHGf947de6caed3: index: use `index.has_node` in `revlog.addrevision` (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/D7323?vs=17836&id=17866
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D7323/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D7323
AFFECTED FILES
mercurial/revlog.py
CHANGE DETAILS
diff --git a/mercurial/revlog.py b/mercurial/revlog.py
--- a/mercurial/revlog.py
+++ b/mercurial/revlog.py
@@ -1995,7 +1995,7 @@
)
node = node or self.hash(rawtext, p1, p2)
- if node in self.nodemap:
+ if self.index.has_node(node):
return node
if validatehash:
To: marmoute, indygreg, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list