sparse-park-92566
07/24/2024, 1:24 PMGET
requests and HEAD
requests when encryption used is SSE-KMS (link)..and in pants code we do send the headers like here
The relevant code in build file looks like this
run_shell_command(
name="run-test-download",
execution_dependencies=[":test-download"],
command="echo $(pwd)",
)
file(
name="test-download",
source=http_source(url="<s3://example-bucket/bucket-data.gz>",
sha256="20ee0c788011355604f31e41b2ec87d718da588d7404b9bbb50",
len=740199)
)
And I am triggering the following pants command
pants run :run-test-download
The error message is
IntrinsicError: Client error (400) downloading file <file-name> from <S3-url>
Anyone else faced/resolved this issue?
Thanks