changeset 51318:0106df85efd5

revlog: stop using `atomictmp` for the split revlog Since we already manually deal with writing on the side and delaying visibily, we no longer need this.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 11 Jan 2024 16:41:54 +0100
parents 5b3b6db49bbb
children da7ecb4deaec
files mercurial/revlog.py
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/revlog.py	Thu Jan 11 16:39:31 2024 +0100
+++ b/mercurial/revlog.py	Thu Jan 11 16:41:54 2024 +0100
@@ -772,7 +772,6 @@
             self.index_file,
             mode=b"w",
             checkambig=self.data_config.check_ambig,
-            atomictemp=True,
         )
 
     def split_inline(self, tr, header, new_index_file_path=None):