##// END OF EJS Templates
manifest: use read_delta_new_entries in changegroup validate...
marmoute -
r52679:e4954fd3 default
parent child Browse files
Show More
@@ -611,7 +611,7 b' class cg1unpacker:'
611 # validate incoming csets have their manifests
611 # validate incoming csets have their manifests
612 for cset in range(clstart, clend):
612 for cset in range(clstart, clend):
613 mfnode = cl.changelogrevision(cset).manifest
613 mfnode = cl.changelogrevision(cset).manifest
614 mfest = ml[mfnode].readdelta()
614 mfest = ml[mfnode].read_delta_new_entries()
615 # store file nodes we must see
615 # store file nodes we must see
616 for f, n in mfest.items():
616 for f, n in mfest.items():
617 needfiles.setdefault(f, set()).add(n)
617 needfiles.setdefault(f, set()).add(n)
General Comments 0
You need to be logged in to leave comments. Login now