Mercurial > hg
changeset 34520:ca5b833ce756
configitems: register the 'experimental.mmapindexthreshold' config
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Sun, 08 Oct 2017 20:43:46 +0200 |
parents | 0314e02efa25 |
children | aacb17cc0ee4 |
files | mercurial/configitems.py mercurial/localrepo.py |
diffstat | 2 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/configitems.py Sun Oct 08 20:42:19 2017 +0200 +++ b/mercurial/configitems.py Sun Oct 08 20:43:46 2017 +0200 @@ -197,6 +197,9 @@ coreconfigitem('experimental', 'maxdeltachainspan', default=-1, ) +coreconfigitem('experimental', 'mmapindexthreshold', + default=None, +) coreconfigitem('experimental', 'nonnormalparanoidcheck', default=False, )
--- a/mercurial/localrepo.py Sun Oct 08 20:42:19 2017 +0200 +++ b/mercurial/localrepo.py Sun Oct 08 20:43:46 2017 +0200 @@ -605,7 +605,7 @@ if 0 <= chainspan: self.svfs.options['maxdeltachainspan'] = chainspan mmapindexthreshold = self.ui.configbytes('experimental', - 'mmapindexthreshold', None) + 'mmapindexthreshold') if mmapindexthreshold is not None: self.svfs.options['mmapindexthreshold'] = mmapindexthreshold