##// END OF EJS Templates
revlog: set the threshold for lazy parsing higher...
Matt Mackall -
r4974:a3353451 default
parent child Browse files
Show More
@@ -319,7 +319,7 b' class revlogio(object):'
319
319
320 def parseindex(self, fp, st, inline):
320 def parseindex(self, fp, st, inline):
321 if (lazyparser.safe_to_use and not inline and
321 if (lazyparser.safe_to_use and not inline and
322 st and st.st_size > 10000):
322 st and st.st_size > 1000000):
323 # big index, let's parse it on demand
323 # big index, let's parse it on demand
324 parser = lazyparser(fp, st.st_size, indexformatng, ngshaoffset)
324 parser = lazyparser(fp, st.st_size, indexformatng, ngshaoffset)
325 index = lazyindex(parser)
325 index = lazyindex(parser)
General Comments 0
You need to be logged in to leave comments. Login now