Skip to content

Commit 9ae51f3

Browse files
fix: get_artifact_from_index now uses artifact_path instead of index_path(bug 1999031)
1 parent 1e1ed20 commit 9ae51f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/taskgraph/util/taskcluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def pagination_handler(response):
231231
def get_artifact_from_index(index_path, artifact_path):
232232
index = get_taskcluster_client("index")
233233
response = index.findArtifactFromTask(index_path, artifact_path)
234-
return _handle_artifact(index_path, response)
234+
return _handle_artifact(artifact_path, response)
235235

236236

237237
def list_tasks(index_path):

0 commit comments

Comments
 (0)