configitems: register the 'format.obsstore-version' config
authorPierre-Yves David <pierre-yves.david@octobus.net>
Fri, 30 Jun 2017 03:42:27 +0200
changeset 33244 fd50788a2d4f
parent 33243 a9524aea7cab
child 33245 28e8983d9ed7
configitems: register the 'format.obsstore-version' config
mercurial/configitems.py
mercurial/obsolete.py
--- a/mercurial/configitems.py	Fri Jun 30 03:42:15 2017 +0200
+++ b/mercurial/configitems.py	Fri Jun 30 03:42:27 2017 +0200
@@ -122,6 +122,9 @@
 coreconfigitem('format', 'maxchainlen',
     default=None,
 )
+coreconfigitem('format', 'obsstore-version',
+    default=None,
+)
 coreconfigitem('hostsecurity', 'ciphers',
     default=None,
 )
--- a/mercurial/obsolete.py	Fri Jun 30 03:42:15 2017 +0200
+++ b/mercurial/obsolete.py	Fri Jun 30 03:42:27 2017 +0200
@@ -717,7 +717,7 @@
     """Create an obsstore instance from a repo."""
     # read default format for new obsstore.
     # developer config: format.obsstore-version
-    defaultformat = ui.configint('format', 'obsstore-version', None)
+    defaultformat = ui.configint('format', 'obsstore-version')
     # rely on obsstore class default when possible.
     kwargs = {}
     if defaultformat is not None: