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 752bdb3 commit b1ac5f4Copy full SHA for b1ac5f4
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,9 @@ def use_fetches(config, tasks):
278
280
if len(dep_tasks) == 0
279
281
else "multiple tasks"
282
),
283
+ labels="\n - ".join(
284
+ config.kind_dependencies_tasks.keys()
285
+ ),
286
)
287
288
0 commit comments