Skip to content

Commit

Permalink
Update taskcluster secrets fetch script
Browse files Browse the repository at this point in the history
  • Loading branch information
Randall Barker committed Mar 12, 2019
1 parent c016302 commit df9d3c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/taskcluster/fetch_secret.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def main(name, argv):
decode = True
if data_name == '':
data_name = os.path.basename(secret_path)
secrets = taskcluster.Secrets({'baseUrl': 'http://taskcluster/secrets/v1'})
secrets = taskcluster.Secrets({'rootUrl': os.environ['TASKCLUSTER_PROXY_URL']})
data = secrets.get(secret_path)
data = data['secret'][data_name]
if decode:
Expand Down

0 comments on commit df9d3c9

Please sign in to comment.