From e8d0a0e9051a8359fc1eeeb7b97f3cb842fda7d5 Mon Sep 17 00:00:00 2001 From: Connor Sheehan Date: Wed, 29 Apr 2026 18:55:41 -0400 Subject: [PATCH 1/2] hg: set `mozext.disable_local_database = False` (Bug 2024739) This disables the local `changetracker.db` database, which still uses the old `pushlog` wire protocol command instead of `pushlog-stream`. --- infra/hgrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/infra/hgrc b/infra/hgrc index 4bb9a1a8de..9698a518f2 100644 --- a/infra/hgrc +++ b/infra/hgrc @@ -5,3 +5,9 @@ robustcheckout = /version-control-tools/hgext/robustcheckout/__init__.py hgmo = /version-control-tools/hgext/hgmo pushlog = /version-control-tools/hgext/pushlog mozext = /version-control-tools/hgext/mozext + +[mozext] +# https://bugzilla.mozilla.org/show_bug.cgi?id=2024739#c14 +# Disable the mozext `changetracker.db` SQLite database as +# we don't need any of the functionality it provides. +disable_local_database = true From 78fecaf4ca24d0b778d58d3a5fd91970826a1d81 Mon Sep 17 00:00:00 2001 From: Connor Sheehan Date: Wed, 29 Apr 2026 19:00:36 -0400 Subject: [PATCH 2/2] comment 15 not 14 --- infra/hgrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/hgrc b/infra/hgrc index 9698a518f2..69caa87dcd 100644 --- a/infra/hgrc +++ b/infra/hgrc @@ -7,7 +7,7 @@ pushlog = /version-control-tools/hgext/pushlog mozext = /version-control-tools/hgext/mozext [mozext] -# https://bugzilla.mozilla.org/show_bug.cgi?id=2024739#c14 +# https://bugzilla.mozilla.org/show_bug.cgi?id=2024739#c15 # Disable the mozext `changetracker.db` SQLite database as # we don't need any of the functionality it provides. disable_local_database = true