##// END OF EJS Templates
delta-find: make sure we only use newer full snapshot as candidate...
marmoute -
r50575:40e24d82 default
parent child Browse files
Show More
@@ -977,7 +977,8 b' def _rawgroups(revlog, p1, p2, cachedelt'
977 # revisions instead of starting our own. Without such re-use,
977 # revisions instead of starting our own. Without such re-use,
978 # topological branches would keep reopening new full chains. Creating
978 # topological branches would keep reopening new full chains. Creating
979 # more and more snapshot as the repository grow.
979 # more and more snapshot as the repository grow.
980 yield tuple(snapshot_cache.snapshots[nullrev])
980 full = [r for r in snapshot_cache.snapshots[nullrev] if snapfloor <= r]
981 yield tuple(sorted(full))
981
982
982 if not sparse:
983 if not sparse:
983 # other approach failed try against prev to hopefully save us a
984 # other approach failed try against prev to hopefully save us a
General Comments 0
You need to be logged in to leave comments. Login now