-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Receiving 403 response when downloading dynamodb_local_latest.tar.gz from s3 bucket #79
Comments
This appears to be an issue where the file is not accessible via HTTP, but is available via HTTPS. This is causing issues in downstream packages as well such as Looks like the URL is hard coded here as of now. https://github.com/99x/dynamodb-localhost/blob/63eb919715496950a64272eb62f36e18fa12737a/dynamodb/config.json#LL3C10-L3C10 |
That's our case - what we did to mitigate the issue is to upload to our s3 bucket and update the |
#78 (review) fixes this issue |
For now, I created a work around. Instead of call curl <download URL> --output dynamodb.tar.gz
mkdir ./.dynamodb
tar -zxf dynamodb.tar.gz --directory ./.dynamodb You can find the download URL for your region here. (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.DownloadingAndRunning.html) |
Fixed in #78 🎉 |
Why mark this as fixed? The PR is still open. |
Also, when will this become available via NPM? |
Ping @AshanFernando can we have a version bump to get this live please? |
I am still getting this error:
My
|
I'm still getting this error: Started downloading dynamodb-local from http://s3-us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.tar.gz into C:\Sites\GoThrive\gothrive.web\gothrive-serverless-http-api.dynamodb. Process may take few minutes. Error: |
Hey 👋
My first contribution here - seems to be a regression of #37
latest tar.gz was updated yesterday
But starting dynamodb fails with
Unsure who owns the s3 bucket, but it is not reachable programmatically, but reachable through browser download https://s3-us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.tar.gz
Checking if we are missing any headers
The text was updated successfully, but these errors were encountered: