Mercurial > public > mercurial-scm > hg
comparison mercurial/configitems.py @ 40429:14b6afc6cb28 stable
configitems: rename the config to prevent adding an alias in future
Right now the config option looks like:
[experimental.server]
stream-narrow-clones=
which does not match how config options are generally defined in core. So let's
rename this to:
[experimental]
server.stream-narrow-clones=
before the new release so that we don't have to add an alias in future for this.
Differential Revision: https://phab.mercurial-scm.org/D5198
author | Pulkit Goyal <pulkit@yandex-team.ru> |
---|---|
date | Wed, 31 Oct 2018 15:27:06 +0300 |
parents | 89703e6151e7 |
children | 4fe63b573791 4265bfb53dd3 |
comparison
equal
deleted
inserted
replaced
40428:bafa1c4bb7a8 | 40429:14b6afc6cb28 |
---|---|
608 default=50000, | 608 default=50000, |
609 ) | 609 ) |
610 coreconfigitem('experimental', 'server.manifestdata.recommended-batch-size', | 610 coreconfigitem('experimental', 'server.manifestdata.recommended-batch-size', |
611 default=100000, | 611 default=100000, |
612 ) | 612 ) |
613 coreconfigitem('experimental.server', 'stream-narrow-clones', | 613 coreconfigitem('experimental', 'server.stream-narrow-clones', |
614 default=False, | 614 default=False, |
615 ) | 615 ) |
616 coreconfigitem('experimental', 'single-head-per-branch', | 616 coreconfigitem('experimental', 'single-head-per-branch', |
617 default=False, | 617 default=False, |
618 ) | 618 ) |