From 65638c70af20c51fd56120d255a8c95189480875 Mon Sep 17 00:00:00 2001 From: Tom Prince Date: Fri, 10 Apr 2020 22:19:03 +0000 Subject: [PATCH] No bug: Don't get full changesets when getting pushlog info; r=aki Since we don't look at the changesets, there is no need for hgmo to generate them for us. Differential Revision: https://phabricator.services.mozilla.com/D70567 --HG-- extra : moz-landing-system : lando --- taskcluster/taskgraph/util/hg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taskcluster/taskgraph/util/hg.py b/taskcluster/taskgraph/util/hg.py index 74c6286a08a1..9beadd241139 100644 --- a/taskcluster/taskgraph/util/hg.py +++ b/taskcluster/taskgraph/util/hg.py @@ -11,7 +11,7 @@ import six import subprocess from redo import retry -PUSHLOG_TMPL = '{}/json-pushes?version=2&changeset={}&tipsonly=1&full=1' +PUSHLOG_TMPL = '{}/json-pushes?version=2&changeset={}&tipsonly=1' def find_hg_revision_push_info(repository, revision):