contrib/perf.py
changeset 51556 f1512dbfee9f
parent 51546 f376c4d5c4b6
child 51560 8e8776a28683
--- a/contrib/perf.py	Wed Mar 27 17:46:23 2024 +0000
+++ b/contrib/perf.py	Wed Mar 27 18:51:33 2024 +0000
@@ -2202,11 +2202,15 @@
     def runone():
         bundle = run_variables[0]
         tmp_dir = run_variables[1]
+
+        # we actually wants to copy all config to ensure the repo config is
+        # taken in account during the benchmark
+        new_ui = repo.ui.__class__(repo.ui)
         # only pass ui when no srcrepo
         localrepo.createrepository(
-            repo.ui, tmp_dir, requirements=repo.requirements
+            new_ui, tmp_dir, requirements=repo.requirements
         )
-        target = hg.repository(repo.ui, tmp_dir)
+        target = hg.repository(new_ui, tmp_dir)
         gen = exchange.readbundle(target.ui, bundle, bundle.name)
         # stream v1
         if util.safehasattr(gen, 'apply'):