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.
--- 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
#