From 780840b91248c15ec854847de88f5929dc7565df Mon Sep 17 00:00:00 2001 From: chrystinne Date: Mon, 16 Sep 2024 10:24:45 -0400 Subject: [PATCH] Use the --no-sign-request argument to avoid loading AWS credentials when downloading open-access projects. --- .../project/templates/project/published_project.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/physionet-django/project/templates/project/published_project.html b/physionet-django/project/templates/project/published_project.html index e729088d0a..5fb10924f0 100644 --- a/physionet-django/project/templates/project/published_project.html +++ b/physionet-django/project/templates/project/published_project.html @@ -433,7 +433,7 @@
Access the files
{% if has_s3_credentials and project.aws.sent_files %}
  • Download the files using AWS command line tools: -
    aws s3 sync {{ project.aws.s3_uri }} DESTINATION
    +
    aws s3 sync --no-sign-request {{ project.aws.s3_uri }} DESTINATION
  • {% endif %}