Mercurial > public > mercurial-scm > hg-stable
diff mercurial/localrepo.py @ 44872:059c99af141d
nodemap: move the option for mmap usage to storage.revlog.nodemap.mmap
The option is stay experimental as long as the main feature is.
Differential Revision: https://phab.mercurial-scm.org/D8421
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Tue, 14 Apr 2020 03:20:21 +0200 |
parents | d688a8d537b9 |
children | d36283e20833 |
line wrap: on
line diff
--- a/mercurial/localrepo.py Tue Apr 14 04:08:46 2020 +0200 +++ b/mercurial/localrepo.py Tue Apr 14 03:20:21 2020 +0200 @@ -938,7 +938,7 @@ options[b'rust.index'] = True if NODEMAP_REQUIREMENT in requirements: options[b'persistent-nodemap'] = True - if ui.configbool(b'experimental', b'exp-persistent-nodemap.mmap'): + if ui.configbool(b'storage', b'revlog.nodemap.mmap'): options[b'persistent-nodemap.mmap'] = True epnm = ui.config(b'experimental', b'exp-persistent-nodemap.mode') options[b'persistent-nodemap.mode'] = epnm