Mercurial > hg
changeset 34410:fecea78ff2af
configitems: register the 'profiling.showmax' config
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Fri, 30 Jun 2017 03:43:56 +0200 |
parents | 7de145167ae7 |
children | f5c16e6507e8 |
files | mercurial/configitems.py mercurial/profiling.py |
diffstat | 2 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/configitems.py Fri Jun 30 03:43:55 2017 +0200 +++ b/mercurial/configitems.py Fri Jun 30 03:43:56 2017 +0200 @@ -338,6 +338,9 @@ coreconfigitem('profiling', 'output', default=None, ) +coreconfigitem('profiling', 'showmax', + default=0.999, +) coreconfigitem('profiling', 'sort', default='inlinetime', )
--- a/mercurial/profiling.py Fri Jun 30 03:43:55 2017 +0200 +++ b/mercurial/profiling.py Fri Jun 30 03:43:56 2017 +0200 @@ -138,7 +138,7 @@ if profformat == 'chrome': showmin = ui.configwith(fraction, 'profiling', 'showmin', 0.005) - showmax = ui.configwith(fraction, 'profiling', 'showmax', 0.999) + showmax = ui.configwith(fraction, 'profiling', 'showmax') kwargs.update(minthreshold=showmin, maxthreshold=showmax) elif profformat == 'hotpath': # inconsistent config: profiling.showmin