# HG changeset patch # User Pulkit Goyal # Date 2019-04-05 12:57:09 # Node ID be5eeaf5c24a05de19baac1cff09f5d65c7c7ebe # Parent 7c9d4cf23adfe26ac4987ed329fe94a8166e0f70 branchcache: don't verify closed nodes in _branchtip() We only do membership testing there. Differential Revision: https://phab.mercurial-scm.org/D6210 diff --git a/mercurial/branchmap.py b/mercurial/branchmap.py --- a/mercurial/branchmap.py +++ b/mercurial/branchmap.py @@ -304,7 +304,6 @@ class branchcache(object): otherwise return last closed head and true.''' tip = heads[-1] closed = True - self._verifyclosed() for h in reversed(heads): if h not in self._closednodes: tip = h