No bug: [taskgraph] Sort soft-dependencies output to make diffing easier; r=aki

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Tom Prince 2019-10-21 16:04:49 +00:00
Родитель 5a7d7429f6
Коммит 4900ffa1bc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -61,7 +61,7 @@ class Task(object):
'label': self.label,
'attributes': self.attributes,
'dependencies': self.dependencies,
'soft_dependencies': self.soft_dependencies,
'soft_dependencies': sorted(self.soft_dependencies),
'optimization': self.optimization,
'task': self.task,
}