From ebc5bef8b247cd7a09d7fcccdd3a406ecc5c9ba3 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Tue, 1 May 2018 01:25:24 +0000 Subject: [PATCH] Bug 1458105 - try more to fetch automationrelevance; r=gps MozReview-Commit-ID: LdcGes2mf01 --HG-- extra : rebase_source : ef4d14bca0b18defcedf5a039df85956de482f81 extra : source : ab6f969c2b916f87c3acc54d2abf1ae4d051d0e3 --- taskcluster/taskgraph/files_changed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taskcluster/taskgraph/files_changed.py b/taskcluster/taskgraph/files_changed.py index d9fe1fa90f29..0fa434070614 100644 --- a/taskcluster/taskgraph/files_changed.py +++ b/taskcluster/taskgraph/files_changed.py @@ -30,7 +30,7 @@ def get_changed_files(repository, revision): def get_automationrelevance(): response = requests.get(url, timeout=5) return response.json() - contents = retry(get_automationrelevance, attempts=2, sleeptime=10) + contents = retry(get_automationrelevance, attempts=10, sleeptime=10) logger.debug('{} commits influencing task scheduling:' .format(len(contents['changesets'])))