Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/taskgraph/transforms/run/run_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def script_url(config, script):
raise Exception("TASK_ID must be defined to use run-task on generic-worker")
task_id = os.environ.get("TASK_ID", "<TASK_ID>")
# Assumes the cluster allows anonymous downloads of public artifacts
tc_url = taskcluster.get_root_url()
tc_url = taskcluster.get_root_url(block_proxy=True)
# TODO: Use util/taskcluster.py:get_artifact_url once hack for Bug 1405889 is removed
return f"{tc_url}/api/queue/v1/task/{task_id}/artifacts/public/{script}"

Expand Down
Loading