Mercurial > public > mercurial-scm > hg-stable
diff mercurial/configitems.py @ 49686:fc8e37c380d3 stable
dirstate: add a synchronisation point before doing a full dirstate read
This will be useful to test some race conditions around the dirstate.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Sat, 25 Feb 2023 01:07:44 +0100 |
parents | ecd28d89c29e |
children | 2be6d5782728 |
line wrap: on
line diff
--- a/mercurial/configitems.py Tue Feb 28 12:15:19 2023 +0100 +++ b/mercurial/configitems.py Sat Feb 25 01:07:44 2023 +0100 @@ -704,6 +704,16 @@ ) coreconfigitem( b'devel', + b'sync.dirstate.pre-read-file', + default=None, +) +coreconfigitem( + b'devel', + b'sync.dirstate.pre-read-file-timeout', + default=2, +) +coreconfigitem( + b'devel', b'strip-obsmarkers', default=True, )