diff mercurial/revlog.py @ 51040:8ed03f773eac

revlog: skip opener options to pass sparse_revlog value We can directly set the option in the config object now.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 10 Oct 2023 10:03:58 +0200
parents 027bc364524b
children e2941c398f10
line wrap: on
line diff
--- a/mercurial/revlog.py	Tue Oct 10 10:03:50 2023 +0200
+++ b/mercurial/revlog.py	Tue Oct 10 10:03:58 2023 +0200
@@ -630,8 +630,6 @@
         mmapindexthreshold = None
         if self._mmaplargeindex:
             mmapindexthreshold = self.data_config.mmap_index_threshold
-        if b'sparse-revlog' in opts:
-            self.delta_config.sparse_revlog = bool(opts[b'sparse-revlog'])
         if self.delta_config.sparse_revlog:
             # sparse-revlog forces sparse-read
             self.data_config.with_sparse_read = True