mercurial/localrepo.py
changeset 38737 913ca175c4ae
parent 38736 93777d16a25d
child 38744 ae17555ef93f
--- a/mercurial/localrepo.py	Thu Jul 19 10:06:58 2018 +0200
+++ b/mercurial/localrepo.py	Thu Jul 19 10:35:29 2018 +0200
@@ -668,9 +668,8 @@
         manifestcachesize = self.ui.configint('format', 'manifestcachesize')
         if manifestcachesize is not None:
             self.svfs.options['manifestcachesize'] = manifestcachesize
-        # experimental config: format.aggressivemergedeltas
-        deltabothparents = self.ui.configbool('format',
-                                              'aggressivemergedeltas')
+        deltabothparents = self.ui.configbool('revlog',
+                                              'optimize-delta-parent-choice')
         self.svfs.options['deltabothparents'] = deltabothparents
         self.svfs.options['lazydeltabase'] = not scmutil.gddeltaconfig(self.ui)
         chainspan = self.ui.configbytes('experimental', 'maxdeltachainspan')