##// END OF EJS Templates
discovery: simply walk the undecided revs when building the children mapping...
marmoute -
r42048:c9842091 default
parent child Browse files
Show More
@@ -216,7 +216,7 b' class partialdiscovery(object):'
216 216 # this by keeping a persistent cache of children across invocations.
217 217 children = {}
218 218
219 for rev in repo.changelog.revs(start=min(revsroots)):
219 for rev in sorted(revs):
220 220 # Always ensure revision has an entry so we don't need to worry
221 221 # about missing keys.
222 222 children.setdefault(rev, [])
General Comments 0
You need to be logged in to leave comments. Login now