rhg-status: use `Filelog` default options when opening filelogs
This is not currently a problem since the options are the same, but would
have become one at some point in the future.
--- a/rust/rhg/src/commands/status.rs Fri Nov 15 23:50:35 2024 +0100
+++ b/rust/rhg/src/commands/status.rs Mon Nov 18 15:02:07 2024 +0100
@@ -384,7 +384,7 @@
let working_directory_vfs = repo.working_directory_vfs();
let store_vfs = repo.store_vfs();
let revlog_open_options =
- repo.default_revlog_options(RevlogType::Manifestlog)?;
+ repo.default_revlog_options(RevlogType::Filelog)?;
let res: Vec<_> = take(&mut ds_status.unsure)
.into_par_iter()
.map(|to_check| {