comparison mercurial/localrepo.py @ 41226:0f2b8d51bfdf

narrow: include journal.narrowspec in transaction journal We had missed this file before, which led to it lying around after the transaction completed. Differential Revision: https://phab.mercurial-scm.org/D5556
author Martin von Zweigbergk <martinvonz@google.com>
date Thu, 10 Jan 2019 13:36:25 -0800
parents 8aca89a694d4
children 3b35ebdb9f8c
comparison
equal deleted inserted replaced
41225:44914de4e915 41226:0f2b8d51bfdf
1910 scmutil.registersummarycallback(self, tr, desc) 1910 scmutil.registersummarycallback(self, tr, desc)
1911 return tr 1911 return tr
1912 1912
1913 def _journalfiles(self): 1913 def _journalfiles(self):
1914 return ((self.svfs, 'journal'), 1914 return ((self.svfs, 'journal'),
1915 (self.svfs, 'journal.narrowspec'),
1915 (self.vfs, 'journal.dirstate'), 1916 (self.vfs, 'journal.dirstate'),
1916 (self.vfs, 'journal.branch'), 1917 (self.vfs, 'journal.branch'),
1917 (self.vfs, 'journal.desc'), 1918 (self.vfs, 'journal.desc'),
1918 (self.vfs, 'journal.bookmarks'), 1919 (self.vfs, 'journal.bookmarks'),
1919 (self.svfs, 'journal.phaseroots')) 1920 (self.svfs, 'journal.phaseroots'))