Show More
@@ -639,7 +639,11 b' class revlog(object):' | |||
|
639 | 639 | % (flags >> 16, fmt, self.indexfile) |
|
640 | 640 | ) |
|
641 | 641 | |
|
642 | self._inline = versionflags & FLAG_INLINE_DATA | |
|
642 | # There is a bug in the transaction handling when going from an | |
|
643 | # inline revlog to a separate index and data file. Turn it off until | |
|
644 | # it's fixed, since v2 revlogs sometimes get rewritten on exchange. | |
|
645 | # See issue6485 | |
|
646 | self._inline = False | |
|
643 | 647 | # generaldelta implied by version 2 revlogs. |
|
644 | 648 | self._generaldelta = True |
|
645 | 649 |
General Comments 0
You need to be logged in to leave comments.
Login now