Comments
Patch
@@ -107,6 +107,9 @@ coreconfigitem('devel', 'strip-obsmarker
coreconfigitem('patch', 'fuzz',
default=2,
)
+coreconfigitem('server', 'bundle1',
+ default=True,
+)
coreconfigitem('ui', 'clonebundleprefers',
default=list,
)
@@ -608,7 +608,7 @@ def bundle1allowed(repo, action):
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."""