Mercurial > hg-stable
diff mercurial/configitems.py @ 34613:5e61cd5fb0fc
configitems: register the 'server.bundle*' family of config
All these config use the same function specifying a default value. We need to
register them all at the same time.
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Wed, 11 Oct 2017 17:51:40 +0200 |
parents | c2cb6be4212f |
children | 32166736684e |
line wrap: on
line diff
--- a/mercurial/configitems.py Wed Oct 11 04:16:17 2017 +0200 +++ b/mercurial/configitems.py Wed Oct 11 17:51:40 2017 +0200 @@ -500,6 +500,18 @@ coreconfigitem('server', 'bundle1gd', default=None, ) +coreconfigitem('server', 'bundle1.pull', + default=None, +) +coreconfigitem('server', 'bundle1gd.pull', + default=None, +) +coreconfigitem('server', 'bundle1.push', + default=None, +) +coreconfigitem('server', 'bundle1gd.push', + default=None, +) coreconfigitem('server', 'compressionengines', default=list, )