Skip to content
Snippets Groups Projects
Commit 774ff56c authored by Matt Mackall's avatar Matt Mackall
Browse files

merge with stable

parents a939eeb9 469d949a
No related branches found
No related tags found
No related merge requests found
......@@ -913,8 +913,13 @@
ladd = l.append
# preload the cache
self._chunkraw(revs[0], revs[-1])
offset, data = self._chunkcache
try:
self._chunkraw(revs[0], revs[-1])
offset, data = self._chunkcache
except OverflowError:
# issue4215 - we can't cache a run of chunks greater than
# 2G on Windows
return [self._chunk(rev) for rev in revs]
for rev in revs:
chunkstart = start(rev)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment