Mercurial > hg
changeset 52272:f204583a24ca stable
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.
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Mon, 18 Nov 2024 15:02:07 +0100 |
parents | 81e59988e11c |
children | fdecc547a75d |
files | rust/rhg/src/commands/status.rs |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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| {