bradleyg / django-s3direct

Directly upload files to S3 compatible services with Django.
MIT License
653 stars 234 forks source link

Store botocore session between requests #251

Closed ktaborski closed 2 years ago

ktaborski commented 2 years ago

With AWS STS every session has temporary credentials. Credentials are valid for hour, but if new session object is created, then new credentials are generated.

With current functionality using AWS STS is causing: SignatureDoesNotMatch error.

bradleyg commented 2 years ago

Thanks