From db9fd56702c373f5dcaca88848588a90724ae274 Mon Sep 17 00:00:00 2001 From: Joel Maher Date: Fri, 8 Sep 2017 11:24:25 -0400 Subject: [PATCH] Bug 1397435 - allow SETA to work on stylo-disabled jobs. r=armenzg --- taskcluster/taskgraph/util/seta.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/taskcluster/taskgraph/util/seta.py b/taskcluster/taskgraph/util/seta.py index 8b5e19e2c4ac..fe077881b3af 100644 --- a/taskcluster/taskgraph/util/seta.py +++ b/taskcluster/taskgraph/util/seta.py @@ -81,9 +81,6 @@ class SETA(object): # ensure no build tasks slipped in, we never want to optimize out those low_value_tasks = [x for x in low_value_tasks if 'build' not in x.lower()] - # Bug 1340065, temporarily disable SETA for linux64-stylo - low_value_tasks = [x for x in low_value_tasks if x.find('linux64-stylo') == -1] - # In the event of request times out, requests will raise a TimeoutError. except exceptions.Timeout: logger.warning("SETA timeout, we will treat all test tasks as high value.")