Bug 1616354 Change priority order for |mach try| push estimates target set r=ahal

Differential Revision: https://phabricator.services.mozilla.com/D66575

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Simon Fraser 2020-03-16 18:32:11 +00:00
parent 51343665fb
commit 77fba7508b

View File

@ -105,7 +105,7 @@ def display_push_estimates(try_task_config):
graph_cache = None
dep_cache = None
target_file = None
for graph_cache_file in ["full_task_graph", "target_task_graph"]:
for graph_cache_file in ["target_task_graph", "full_task_graph"]:
graph_cache = os.path.join(cache_dir, graph_cache_file)
if os.path.isfile(graph_cache):
dep_cache = graph_cache.replace("task_graph", "task_dependencies")