##// END OF EJS Templates
revlogv2: temporarily forbid inline revlogs...
Raphaël Gomès -
r47450:c8bb7b89 default
parent child Browse files
Show More
@@ -639,7 +639,11 b' class revlog(object):'
639 % (flags >> 16, fmt, self.indexfile)
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 # generaldelta implied by version 2 revlogs.
647 # generaldelta implied by version 2 revlogs.
644 self._generaldelta = True
648 self._generaldelta = True
645
649
General Comments 0
You need to be logged in to leave comments. Login now