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
...will not result in an accelerated URL being generated for a presigned post operation. The bug is in this code, in client.py:
# Enable accelerate if the configuration is set to to true or the
# endpoint being used matches one of the Accelerate endpoints.
if s3_accelerate or S3_ACCELERATE_ENDPOINT in self._endpoint.host:
# Amazon S3 accelerate is being used then always use the virtual
# style of addressing because it is required.
self._force_virtual_style_s3_addressing()
# Also make sure that the hostname gets switched to
# s3-accelerate.amazonaws.com
self.meta.events.register_first(
'request-created.s3', switch_host_s3_accelerate)
...request-created.s3 is never called for a presigned post because no request to s3 is made, and thus switch_host_s3_accelerate is not called.
The text was updated successfully, but these errors were encountered:
This code:
...will not result in an accelerated URL being generated for a presigned post operation. The bug is in this code, in
client.py
:...
request-created.s3
is never called for a presigned post because no request to s3 is made, and thusswitch_host_s3_accelerate
is not called.The text was updated successfully, but these errors were encountered: