changeset 47443 | 9ab54aa56982 |
parent 47389 | e6292eb33384 |
child 47659 | f030c7d22032 |
--- a/mercurial/store.py Wed Jun 09 01:10:34 2021 +0200 +++ b/mercurial/store.py Tue Jun 08 02:05:05 2021 +0200 @@ -730,6 +730,11 @@ else: return self.vfs.join(path) + def register_file(self, path): + """generic hook point to lets fncache steer its stew""" + if path.startswith(b'data/') or path.startswith(b'meta/'): + self.fncache.add(path) + class fncachestore(basicstore): def __init__(self, path, vfstype, dotencode):