diff mercurial/localrepo.py @ 21147:2a246e737f92

bundle2: move bundle2 config option to section "experimental" We highlight the fact that this is experimental by moving it to an "experimental" section, and we match the config name with the server capability name `bundle2-exp`.
author Pierre-Yves David <pierre-yves.david@fb.com>
date Thu, 17 Apr 2014 16:01:58 -0400
parents 0c5088be66af
children 60ad2ea5b106
line wrap: on
line diff
--- a/mercurial/localrepo.py	Thu Apr 17 15:45:12 2014 -0400
+++ b/mercurial/localrepo.py	Thu Apr 17 16:01:58 2014 -0400
@@ -305,7 +305,7 @@
     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('server', 'bundle2', False):
+        if self.ui.configbool('experimental', 'bundle2-exp', False):
             caps = set(caps)
             capsblob = bundle2.encodecaps(self.bundle2caps)
             caps.add('bundle2-exp=' + urllib.quote(capsblob))