# HG changeset patch # User Pierre-Yves David # Date 1704987714 -3600 # Node ID 0106df85efd51fb453c14823613a8a9a4484b670 # Parent 5b3b6db49bbbce5426d4e705ca1ff20451879f1d 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. diff -r 5b3b6db49bbb -r 0106df85efd5 mercurial/revlog.py --- 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):