Open zoul opened 4 years ago
Currently the upload URL is constructed from the bucket name and the AWS host:
url = interpolate """https://{0}.{1}""" [ record.bucket , record.awsS3Host ]
This doesn’t work for buckets that have dots (.) in their names. According to this it should be possible to use an alternate URL format to upload:
.
https://s3-{region-name}.amazonaws.com/{bucket-name}
This has the advantage of working even for buckets with dots. Could we switch to this URL format?
Currently the upload URL is constructed from the bucket name and the AWS host:
This doesn’t work for buckets that have dots (
.
) in their names. According to this it should be possible to use an alternate URL format to upload:This has the advantage of working even for buckets with dots. Could we switch to this URL format?