# HG changeset patch # User Boris Feld # Date 1507488226 -7200 # Node ID ca5b833ce7560b6170431c1c382aa49f1b7f8ac0 # Parent 0314e02efa25f79a56a7456e76c5e42406644a29 configitems: register the 'experimental.mmapindexthreshold' config diff -r 0314e02efa25 -r ca5b833ce756 mercurial/configitems.py --- 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, ) diff -r 0314e02efa25 -r ca5b833ce756 mercurial/localrepo.py --- 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