[Updated] [+ ] D8419: nodemap: move the main switch to the `format` section

marmoute (Pierre-Yves David) phabricator at mercurial-scm.org
Mon Apr 27 17:20:58 UTC 2020


Herald added a subscriber: mercurial-patches.
marmoute updated this revision to Diff 21230.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D8419?vs=21067&id=21230

BRANCH
  default

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D8419/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D8419

AFFECTED FILES
  mercurial/configitems.py
  mercurial/localrepo.py
  tests/test-persistent-nodemap.t

CHANGE DETAILS

diff --git a/tests/test-persistent-nodemap.t b/tests/test-persistent-nodemap.t
--- a/tests/test-persistent-nodemap.t
+++ b/tests/test-persistent-nodemap.t
@@ -3,8 +3,8 @@
 ===================================
 
   $ cat << EOF >> $HGRCPATH
-  > [experimental]
-  > exp-persistent-nodemap=yes
+  > [format]
+  > use-persistent-nodemap=yes
   > [devel]
   > persistent-nodemap=yes
   > EOF
diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py
--- a/mercurial/localrepo.py
+++ b/mercurial/localrepo.py
@@ -3664,7 +3664,7 @@
     if ui.configbool(b'format', b'bookmarks-in-store'):
         requirements.add(bookmarks.BOOKMARKS_IN_STORE_REQUIREMENT)
 
-    if ui.configbool(b'experimental', b'exp-persistent-nodemap'):
+    if ui.configbool(b'format', b'use-persistent-nodemap'):
         requirements.add(NODEMAP_REQUIREMENT)
 
     return requirements
diff --git a/mercurial/configitems.py b/mercurial/configitems.py
--- a/mercurial/configitems.py
+++ b/mercurial/configitems.py
@@ -675,9 +675,6 @@
     b'experimental', b'rust.index', default=False,
 )
 coreconfigitem(
-    b'experimental', b'exp-persistent-nodemap', default=False,
-)
-coreconfigitem(
     b'experimental', b'exp-persistent-nodemap.mmap', default=True,
 )
 coreconfigitem(
@@ -787,6 +784,9 @@
     b'format', b'usestore', default=True,
 )
 coreconfigitem(
+    b'format', b'use-persistent-nodemap', default=False, experimental=True
+)
+coreconfigitem(
     b'format',
     b'exp-use-copies-side-data-changeset',
     default=False,



To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20200427/db4733d2/attachment-0001.html>


More information about the Mercurial-patches mailing list