##// END OF EJS Templates
Also check the index file size when deciding whether to reload a revlog....
Alexis S. L. Carvalho -
r4483:769cc8ef default
parent child Browse files
Show More
@@ -346,7 +346,8 b' class revlog(object):'
346 if (oldst and st.st_dev == oldst.st_dev
346 if (oldst and st.st_dev == oldst.st_dev
347 and st.st_ino == oldst.st_ino
347 and st.st_ino == oldst.st_ino
348 and st.st_mtime == oldst.st_mtime
348 and st.st_mtime == oldst.st_mtime
349 and st.st_ctime == oldst.st_ctime):
349 and st.st_ctime == oldst.st_ctime
350 and st.st_size == oldst.st_size):
350 return
351 return
351 self.indexstat = st
352 self.indexstat = st
352 if len(i) > 0:
353 if len(i) > 0:
General Comments 0
You need to be logged in to leave comments. Login now