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
{{ message }}
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
A push_to_s3 step on v0.4.0 will successfully upload to a SSL only S3 bucket.
on v0.4.1 it fails with
raise S3UploadFailedError(
boto3.exceptions.S3UploadFailedError: Failed to upload <...>/flow.py: An error occurred (AccessDenied) when calling the PutObject operation: Access Denied
Regression from 0.4.0 to 0.4.1 due to #322.
A push_to_s3 step on v0.4.0 will successfully upload to a SSL only S3 bucket.
on v0.4.1 it fails with
This is most likely due to the use_ssl parameter default
None
in https://github.com/PrefectHQ/prefect-aws/blob/c4939d76c8868c98a187fad47da4a09c1e11121f/prefect_aws/deployments/steps.py#L223C5-L223C12 which contradicts the boto3 client default 'True' https://boto3.amazonaws.com/v1/documentation/api/latest/reference/core/session.html#boto3.session.Session.clientThe text was updated successfully, but these errors were encountered: