##// END OF EJS Templates
changelog: stop useless enforcing split at the end of transaction...
marmoute -
r52209:178e50ed default
parent child Browse files
Show More
@@ -369,8 +369,9 b' class changelog(revlog.revlog):'
369 else:
369 else:
370 new_index_file = self._inner.finalize_pending()
370 new_index_file = self._inner.finalize_pending()
371 self._indexfile = new_index_file
371 self._indexfile = new_index_file
372 # split when we're done
372 if self._inline:
373 self._enforceinlinesize(tr, side_write=False)
373 msg = 'changelog should not be inline at that point'
374 raise error.ProgrammingError(msg)
374
375
375 def _writepending(self, tr):
376 def _writepending(self, tr):
376 """create a file containing the unfinalized state for
377 """create a file containing the unfinalized state for
General Comments 0
You need to be logged in to leave comments. Login now