stack: fix phasecache._phasesets check logic
authorAnton Shestakov <av6@dwimlabs.net>
Sat, 06 Apr 2019 15:49:22 +0200
changeset 4477 faf99d48eda9
parent 4476 f0bda6a6d93b
child 4478 94743877e50b
stack: fix phasecache._phasesets check logic When _phasesets is not None, it's a list, and it contains set()s of revisions in a specific phase, starting from public, draft, secret and so on. But since repos are supposed to have the majority of revisions in public phase, the first element of this list is not a (potentially huge) set, but None. Previously this code tried to check if there's any element that is None, and was always finding None at index 0, so the short path was executed every time and the rest of the function was never used.
hgext3rd/topic/stack.py
--- a/hgext3rd/topic/stack.py	Tue Apr 02 12:41:57 2019 +0530
+++ b/hgext3rd/topic/stack.py	Sat Apr 06 15:49:22 2019 +0200
@@ -42,8 +42,8 @@
     The intend is to build something more efficient than what revsets do in
     this area.
     """
-    phasecache = repo._phasecache
-    if not phasecache._phasesets or None in phasecache._phasesets:
+    phasesets = repo._phasecache._phasesets
+    if not phasesets or None in phasesets[phases.draft:]:
         return repo.revs('(not public()) - obsolete()')
 
     result = set()