[Updated] D9764: persistent-nodemap: remove the "experimental" tag to the feature
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sat Jan 16 11:00:17 UTC 2021
Closed by commit rHG7cc2e676d59d: persistent-nodemap: remove the "experimental" tag to the feature (authored by marmoute).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D9764?vs=24896&id=24975
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D9764/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D9764
AFFECTED FILES
mercurial/configitems.py
CHANGE DETAILS
diff --git a/mercurial/configitems.py b/mercurial/configitems.py
--- a/mercurial/configitems.py
+++ b/mercurial/configitems.py
@@ -1266,23 +1266,10 @@
b'usestore',
default=True,
)
-# Right now, the only efficient implement of the nodemap logic is in Rust,
-#
-# The case was discussed that the 5.6 sprint and the following was decided for
-# feature that have an optional fast implementation (and are a performance
-# regression in the others)
-#
-# * If the fast implementation is not available, Mercurial will refuse to
-# access repository that requires it. Pointing to proper documentation
-#
-# * An option exist to lift that limitation and allow repository access.
-#
-# Such access will emit a warning unless configured not to.
-#
-# * When sufficiently mature, the feature can be enabled by default only for
-# installation that supports it.
-coreconfigitem(
- b'format', b'use-persistent-nodemap', default=False, experimental=True
+coreconfigitem(
+ b'format',
+ b'use-persistent-nodemap',
+ default=False,
)
coreconfigitem(
b'format',
@@ -1787,14 +1774,12 @@
b'storage',
b'revlog.persistent-nodemap.mmap',
default=True,
- experimental=True,
)
# experimental as long as format.use-persistent-nodemap is.
coreconfigitem(
b'storage',
b'revlog.persistent-nodemap.slow-path',
default=b"abort",
- experimental=True,
)
coreconfigitem(
To: marmoute, #hg-reviewers, Alphare, pulkit
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20210116/f4063e68/attachment-0002.html>
More information about the Mercurial-patches
mailing list