##// END OF EJS Templates
configitems: register the 'server.bundle1' config
marmoute -
r33216:ffb1d0f5 default
parent child Browse files
Show More
@@ -113,6 +113,9 b" coreconfigitem('hostsecurity', 'disablet"
113 coreconfigitem('patch', 'fuzz',
113 coreconfigitem('patch', 'fuzz',
114 default=2,
114 default=2,
115 )
115 )
116 coreconfigitem('server', 'bundle1',
117 default=True,
118 )
116 coreconfigitem('ui', 'clonebundleprefers',
119 coreconfigitem('ui', 'clonebundleprefers',
117 default=list,
120 default=list,
118 )
121 )
@@ -608,7 +608,7 b' def bundle1allowed(repo, action):'
608 if v is not None:
608 if v is not None:
609 return v
609 return v
610
610
611 return ui.configbool('server', 'bundle1', True)
611 return ui.configbool('server', 'bundle1')
612
612
613 def supportedcompengines(ui, proto, role):
613 def supportedcompengines(ui, proto, role):
614 """Obtain the list of supported compression engines for a request."""
614 """Obtain the list of supported compression engines for a request."""
General Comments 0
You need to be logged in to leave comments. Login now