[Updated] D12123: dirstate: rename the filegenerator used for writing
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Thu Feb 3 16:51:52 UTC 2022
Closed by commit rHG111f5a0cbcaa: dirstate: rename the filegenerator used for writing (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/D12123?vs=32019&id=32041
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D12123/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D12123
AFFECTED FILES
mercurial/dirstate.py
mercurial/transaction.py
CHANGE DETAILS
diff --git a/mercurial/transaction.py b/mercurial/transaction.py
--- a/mercurial/transaction.py
+++ b/mercurial/transaction.py
@@ -28,7 +28,10 @@
# These are the file generators that should only be executed after the
# finalizers are done, since they rely on the output of the finalizers (like
# the changelog having been written).
-postfinalizegenerators = {b'bookmarks', b'dirstate'}
+postfinalizegenerators = {
+ b'bookmarks',
+ b'dirstate-1-main',
+}
GEN_GROUP_ALL = b'all'
GEN_GROUP_PRE_FINALIZE = b'prefinalize'
diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py
--- a/mercurial/dirstate.py
+++ b/mercurial/dirstate.py
@@ -706,7 +706,7 @@
if tr:
# delay writing in-memory changes out
tr.addfilegenerator(
- b'dirstate',
+ b'dirstate-1-main',
(self._filename,),
lambda f: self._writedirstate(tr, f),
location=b'plain',
@@ -1374,7 +1374,7 @@
# changes written out above, even if dirstate is never
# changed after this
tr.addfilegenerator(
- b'dirstate',
+ b'dirstate-1-main',
(self._filename,),
lambda f: self._writedirstate(tr, f),
location=b'plain',
To: marmoute, #hg-reviewers, Alphare
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20220203/f0d777b0/attachment-0002.html>
More information about the Mercurial-patches
mailing list