##// END OF EJS Templates
merge with stable
Matt Mackall -
r20965:774ff56c merge default
parent child Browse files
Show More
@@ -913,8 +913,13 b' class revlog(object):'
913 ladd = l.append
913 ladd = l.append
914
914
915 # preload the cache
915 # preload the cache
916 try:
916 self._chunkraw(revs[0], revs[-1])
917 self._chunkraw(revs[0], revs[-1])
917 offset, data = self._chunkcache
918 offset, data = self._chunkcache
919 except OverflowError:
920 # issue4215 - we can't cache a run of chunks greater than
921 # 2G on Windows
922 return [self._chunk(rev) for rev in revs]
918
923
919 for rev in revs:
924 for rev in revs:
920 chunkstart = start(rev)
925 chunkstart = start(rev)
General Comments 0
You need to be logged in to leave comments. Login now