# HG changeset patch # User Pierre-Yves David # Date 1498787046 -7200 # Node ID ffb1d0f541f5344c39d480caa3c341320c9c610f # Parent 24f3ff50736daa115023760bc49979e9be42663e configitems: register the 'server.bundle1' config diff -r 24f3ff50736d -r ffb1d0f541f5 mercurial/configitems.py --- a/mercurial/configitems.py Fri Jun 30 03:42:43 2017 +0200 +++ b/mercurial/configitems.py Fri Jun 30 03:44:06 2017 +0200 @@ -113,6 +113,9 @@ coreconfigitem('patch', 'fuzz', default=2, ) +coreconfigitem('server', 'bundle1', + default=True, +) coreconfigitem('ui', 'clonebundleprefers', default=list, ) diff -r 24f3ff50736d -r ffb1d0f541f5 mercurial/wireproto.py --- a/mercurial/wireproto.py Fri Jun 30 03:42:43 2017 +0200 +++ b/mercurial/wireproto.py Fri Jun 30 03:44:06 2017 +0200 @@ -608,7 +608,7 @@ if v is not None: return v - return ui.configbool('server', 'bundle1', True) + return ui.configbool('server', 'bundle1') def supportedcompengines(ui, proto, role): """Obtain the list of supported compression engines for a request."""