# HG changeset patch # User Pierre-Yves David # Date 1346675659 -7200 # Node ID 5210e5a556d9c8e304b9f8af9f631930ac509bb9 # Parent 2c6382772db0a5592138bfeed39422192bb6bc3a clfilter: do not use branchmap cache if there are filtered changesets If there are filtered changesets the cache is not valid. We'll have to cache branchmap for filtered state too, but for now recomputing the branchmap is enough. diff -r 2c6382772db0 -r 5210e5a556d9 mercurial/localrepo.py --- a/mercurial/localrepo.py Mon Oct 08 09:55:41 2012 -0700 +++ b/mercurial/localrepo.py Mon Sep 03 14:34:19 2012 +0200 @@ -627,8 +627,15 @@ def branchmap(self): '''returns a dictionary {branch: [branchheads]}''' - self.updatebranchcache() - return self._branchcache + if self.changelog.filteredrevs: + # some changeset are excluded we can't use the cache + branchmap = {} + self._updatebranchcache(branchmap, (self[r] for r in self)) + return branchmap + else: + self.updatebranchcache() + return self._branchcache + def _branchtip(self, heads): '''return the tipmost branch head in heads'''