# HG changeset patch # User Pierre-Yves David # Date 1498787047 -7200 # Node ID 40861b2254a59413c7450f868e5bf66441bf92f4 # Parent ffb1d0f541f5344c39d480caa3c341320c9c610f configitems: register the 'server.bundle1gd' config diff -r ffb1d0f541f5 -r 40861b2254a5 mercurial/configitems.py --- a/mercurial/configitems.py Fri Jun 30 03:44:06 2017 +0200 +++ b/mercurial/configitems.py Fri Jun 30 03:44:07 2017 +0200 @@ -116,6 +116,9 @@ coreconfigitem('server', 'bundle1', default=True, ) +coreconfigitem('server', 'bundle1gd', + default=None, +) coreconfigitem('ui', 'clonebundleprefers', default=list, ) diff -r ffb1d0f541f5 -r 40861b2254a5 mercurial/wireproto.py --- a/mercurial/wireproto.py Fri Jun 30 03:44:06 2017 +0200 +++ b/mercurial/wireproto.py Fri Jun 30 03:44:07 2017 +0200 @@ -604,7 +604,7 @@ return v if gd: - v = ui.configbool('server', 'bundle1gd', None) + v = ui.configbool('server', 'bundle1gd') if v is not None: return v