comparison mercurial/manifest.py @ 29998:14ad8e2a4abe

manifest: specify checkambig=True to revlog.__init__, to avoid ambiguity If steps below occurs at "the same time in sec", all of mtime, ctime and size are same between (1) and (3). 1. append data to 00manifest.i (and close transaction) 2. discard appended data by truncation (strip or rollback) 3. append same size but different data to 00manifest.i again Therefore, cache validation doesn't work after (3) as expected. To avoid such file stat ambiguity around truncation, this patch specifies checkambig=True to revlog.__init__(). This makes revlog write changes out with checkambig=True. Even after this patch, avoiding file stat ambiguity of 00manifest.i around truncation isn't yet completed, because truncation side isn't aware of this issue. This is a part of ExactCacheValidationPlan. https://www.mercurial-scm.org/wiki/ExactCacheValidationPlan
author FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
date Thu, 22 Sep 2016 21:51:58 +0900
parents 6b5a9a01f29d
children d24e03da24b5
comparison
equal deleted inserted replaced
29997:b5e5ddf48bd2 29998:14ad8e2a4abe
925 if dir: 925 if dir:
926 self._dirlogcache = dirlogcache 926 self._dirlogcache = dirlogcache
927 else: 927 else:
928 self._dirlogcache = {'': self} 928 self._dirlogcache = {'': self}
929 929
930 super(manifestrevlog, self).__init__(opener, indexfile) 930 super(manifestrevlog, self).__init__(opener, indexfile,
931 checkambig=bool(dir))
931 932
932 @property 933 @property
933 def fulltextcache(self): 934 def fulltextcache(self):
934 return self._fulltextcache 935 return self._fulltextcache
935 936