We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have setup The S3 connector, and can GET and PUT objects. I have noticed that only json files show up correctly once uploaded and re-downloaded.
For example, if I do this:
curl -v -X PUT -H "Content-Type: application/json" "http://localhost:9089/buckets/mybucket/object?key=test.json" -d @/tmp/test.json
I can go to the AWS Console and download and view the json.
If, however, I try with a PNG or gzip file, the file has been corrupted when I re-download:
curl -X PUT -H "Content-Type: image/png" "http://localhost:9089/buckets/mybucket/object?key=test.png" -d @/tmp/test.png
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have setup The S3 connector, and can GET and PUT objects. I have noticed that only json files show up correctly once uploaded and re-downloaded.
For example, if I do this:
curl -v -X PUT -H "Content-Type: application/json" "http://localhost:9089/buckets/mybucket/object?key=test.json" -d @/tmp/test.json
I can go to the AWS Console and download and view the json.
If, however, I try with a PNG or gzip file, the file has been corrupted when I re-download:
curl -X PUT -H "Content-Type: image/png" "http://localhost:9089/buckets/mybucket/object?key=test.png" -d @/tmp/test.png
The text was updated successfully, but these errors were encountered: