Bug 1453616 Disable buildbot periodic file updates r=Callek

Summary:
Disable just the buildbot version of the periodic file updates in the file_update action.
Removing the code will happen later.

Reviewers: Callek

Reviewed By: Callek

Bug #: 1453616

Differential Revision: https://phabricator.services.mozilla.com/D921
This commit is contained in:
Simon Fraser
2018-04-13 15:20:11 +01:00
parent 3c26e324c7
commit 44a3ea6242
3 changed files with 1 additions and 28 deletions

View File

@@ -619,5 +619,5 @@ def target_tasks_file_update(full_task_graph, parameters, graph_config):
"""
def filter(task):
# For now any task in the repo-update kind is ok
return task.kind in ['repo-update', 'repo-update-bb']
return task.kind in ['repo-update']
return [l for l, t in full_task_graph.tasks.iteritems() if filter(t)]