mercurial/localrepo.py
changeset 51031 133f5a54ed9d
parent 50929 18c8c18993f0
child 51032 774c00348f9f
--- a/mercurial/localrepo.py	Tue Oct 10 10:02:13 2023 +0200
+++ b/mercurial/localrepo.py	Tue Oct 10 10:02:21 2023 +0200
@@ -1068,6 +1068,10 @@
     options = {}
     options[b'flagprocessors'] = {}
 
+    feature_config = options[b'feature-config'] = revlog.FeatureConfig()
+    data_config = options[b'data-config'] = revlog.DataConfig()
+    delta_config = options[b'delta-config'] = revlog.DeltaConfig()
+
     if requirementsmod.REVLOGV1_REQUIREMENT in requirements:
         options[b'revlogv1'] = True
     if requirementsmod.REVLOGV2_REQUIREMENT in requirements: