# HG changeset patch # User Pierre-Yves David # Date 1684133752 -7200 # 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 -r fd5507619d16 -r 53af67c70af0 mercurial/store.py --- a/mercurial/store.py Mon May 15 08:55:34 2023 +0200 +++ b/mercurial/store.py Mon May 15 08:55:52 2023 +0200 @@ -384,7 +384,7 @@ 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 @@ b'.n', b'.nd', b'.sda', - b'd.tmpcensored', ) # files that are "volatile" and might change between listing and streaming #