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
I was testing Scaleway's object storage with Carrierwave, and noticed that all my files were correctly uploaded, but corrupted. For instance a simple text file with hello would contain the following content:
It is actually due to Scaleway not supporting signature v4 streaming, which under the hood uses chunked-encoding. This is enabled by default in the fog-aws library, but can be disabled with enable_signature_v4_streaming: false.
After that, files were correctly uploaded to Scaleway.
I was testing Scaleway's object storage with Carrierwave, and noticed that all my files were correctly uploaded, but corrupted. For instance a simple text file with
hello
would contain the following content:It is actually due to Scaleway not supporting signature v4 streaming, which under the hood uses chunked-encoding. This is enabled by default in the
fog-aws
library, but can be disabled withenable_signature_v4_streaming: false
.After that, files were correctly uploaded to Scaleway.
Reference: fog/fog-aws#523
The text was updated successfully, but these errors were encountered: