mercurial/localrepo.py
changeset 24696 553dc2b094d9
parent 24686 e0e28e910fa3
child 24739 ea0d5c8e047f
--- a/mercurial/localrepo.py	Sat Feb 07 12:57:40 2015 -0500
+++ b/mercurial/localrepo.py	Fri Apr 10 15:41:33 2015 -0400
@@ -312,9 +312,7 @@
             self._revbranchcache.write()
 
     def _restrictcapabilities(self, caps):
-        # bundle2 is not ready for prime time, drop it unless explicitly
-        # required by the tests (or some brave tester)
-        if self.ui.configbool('experimental', 'bundle2-exp', False):
+        if self.ui.configbool('experimental', 'bundle2-advertise', True):
             caps = set(caps)
             capsblob = bundle2.encodecaps(bundle2.getrepocaps(self))
             caps.add('bundle2=' + urllib.quote(capsblob))