-
-
Notifications
You must be signed in to change notification settings - Fork 866
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
parameters are ignored if s3 custom URL is provided #997
Comments
dannysauer
added a commit
to Kong/docker-pulp
that referenced
this issue
Apr 7, 2021
Add patch to append query string (work around jschneier/django-storages#997) Update Makefile to build locally Roll back pyYAML version which requires a pulp-core version bump
dannysauer
added a commit
to Kong/docker-pulp
that referenced
this issue
Apr 7, 2021
Add patch to append query string (work around jschneier/django-storages#997) Update Makefile to build locally Roll back pyYAML version which requires a pulp-core version bump
dannysauer
added a commit
to Kong/docker-pulp
that referenced
this issue
Apr 9, 2021
Add patch to append query string (work around jschneier/django-storages#997) Don't add duplicate entries to query string Update Makefile to build locally Roll back pyYAML version which requires a pulp-core version bump Tweaked dockerfile caching to eventually make dnf part of builds less horrible
Resolved by #1054 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
django-storages/storages/backends/s3boto3.py
Lines 554 to 578 in 770332b
If additional parameters are passed in to the url method when a custom_url is in use (like when S3 is behind CloudFront), they're ignored on the generated URL. They're already passed in as a dict, so they could easily be passed in to
urllib.parse.urlunparse
instead of using a format string when the URL is built (which might be a good fix anyway).The text was updated successfully, but these errors were encountered: