Mercurial > public > mercurial-scm > hg-stable
diff mercurial/localrepo.py @ 51044:940445de2b09
revlog: skip opener options to pass compression_engine 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:26 +0200 |
parents | 8228e8dd96dd |
children | 7d66621c5349 |
line wrap: on
line diff
--- a/mercurial/localrepo.py Tue Oct 10 10:03:18 2023 +0200 +++ b/mercurial/localrepo.py Tue Oct 10 10:03:26 2023 +0200 @@ -1149,7 +1149,7 @@ # The compression used for new entries will be "the last one" prefix = r.startswith if prefix(b'revlog-compression-') or prefix(b'exp-compression-'): - options[b'compengine'] = r.split(b'-', 2)[2] + feature_config.compression_engine = r.split(b'-', 2)[2] options[b'zlib.level'] = ui.configint(b'storage', b'revlog.zlib.level') if options[b'zlib.level'] is not None: