You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.
When creating a PUT command followed by generating a pre signed request, you are given a correct url containing meta information through the x-amz-meta headers, when you then PUT to this url, the file will be stored (in your tmp bucket) however on reviewing the meta file, the data is not contained in there.
This generates the correct presigned url, when you PUT the file to that url, check your /tmp/bucket/keylocation folder look at the meta tag file and the import id will not be there.
NOTE: Locally this does not work
On a DEV environment using actual AWS, this does work.
The text was updated successfully, but these errors were encountered:
@pl4yradam
Thanks for your report. I'm so sorry for inconvenience.
It seems that this issue is caused by the restriction of s3rver which is a backend of serverless-s3-local. So this feature is not supported for now.
On Fri, 7 Feb 2020, 22:08 Masahiro Wada, ***@***.***> wrote:
@pl4yradam <https://github.com/pl4yradam>
Thanks for your report. I'm so sorry for inconvenience.
It seems that this issue is caused by the restriction of s3rver which is a
backend of serverless-s3-local. So this feature is not supported for now.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#89?email_source=notifications&email_token=AFL4VWWQGABPGEX42WOMT6DRBXLVFA5CNFSM4KRNI3DKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOELEZSFA#issuecomment-583637268>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AFL4VWUCCTAGXH2YASWQL63RBXLVFANCNFSM4KRNI3DA>
.
Hi,
When creating a PUT command followed by generating a pre signed request, you are given a correct url containing meta information through the x-amz-meta headers, when you then PUT to this url, the file will be stored (in your tmp bucket) however on reviewing the meta file, the data is not contained in there.
Steps to reproduce
`
/** @var CommandInterface $cmd */
$cmd = $this->s3ClientService->client->getCommand('PutObject', [
'Bucket' => env('S3_BUCKET'),
'Key' => 'imports/' . $filename,
'Metadata' => [
'import_id' => $import->id,
],
]);
This generates the correct presigned url, when you PUT the file to that url, check your /tmp/bucket/keylocation folder look at the meta tag file and the import id will not be there.
NOTE: Locally this does not work
On a DEV environment using actual AWS, this does work.
The text was updated successfully, but these errors were encountered: