# HG changeset patch # User Pierre-Yves David # Date 2023-05-15 06:55:52 # Node ID 53af67c70af0c303a61818ee58438d5e5b14af8b # Parent fd5507619d167f673da99fc75c45910c70dc83eb store: cleanup what is recognized as a revlog file The temporary file from `censor` are not relevant to the store as they are just temporary. So let `fncache` and `datafiles` forget about them. diff --git a/mercurial/store.py b/mercurial/store.py --- a/mercurial/store.py +++ b/mercurial/store.py @@ -384,7 +384,7 @@ def _calcmode(vfs): b'requires', ] -REVLOG_FILES_MAIN_EXT = (b'.i', b'i.tmpcensored') +REVLOG_FILES_MAIN_EXT = (b'.i',) REVLOG_FILES_OTHER_EXT = ( b'.idx', b'.d', @@ -392,7 +392,6 @@ REVLOG_FILES_OTHER_EXT = ( b'.n', b'.nd', b'.sda', - b'd.tmpcensored', ) # files that are "volatile" and might change between listing and streaming #