We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a415291 commit 0e1d45dCopy full SHA for 0e1d45d
src/taskgraph/transforms/run/__init__.py
@@ -269,7 +269,9 @@ def use_fetches(config, tasks):
269
if len(dep_tasks) != 1:
270
raise Exception(
271
"{name} can't fetch {kind} artifacts because "
272
- "there are {tasks} with label {label} in kind dependencies!".format(
+ "there are {tasks} with label {label} in kind dependencies!\n"
273
+ "Available tasks:"
274
+ "\n - {labels}".format(
275
name=name,
276
kind=kind,
277
label=dependencies[kind],
@@ -278,6 +280,7 @@ def use_fetches(config, tasks):
278
280
if len(dep_tasks) == 0
279
281
else "multiple tasks"
282
),
283
+ labels="\n - ".join(config.kind_dependencies_tasks.keys())
284
)
285
286
0 commit comments