We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
DEFAULT_FILE_STORAGE
The DEFAULT_FILE_STORAGE option was deprecated in django 4.2.0 in favor of another option called STORAGES.
4.2.0
STORAGES
Since we're using django~=4.2.0, we may want to change our docs (and possibly other places) to use the recommended way.
django~=4.2.0
The text was updated successfully, but these errors were encountered:
Replace the DEFAULT_FILE_STORAGE settings with STORAGES
d873ab4
The DEFAULT_FILE_STORAGE option was deprecated in django 4.2.0 in favor of another option called STORAGES. fixes pulp#5404
We can implement a compat layer in Pulp to keep existing installation happy and schedule that to be removed in the future (Pulp 4?).
Also, when we decide to remove it, we can point to django-upgrade to help upgrading: https://github.com/adamchainz/django-upgrade?tab=readme-ov-file#django-42
django-upgrade
The advantage over doing anything is that we can update our code right away.
Sorry, something went wrong.
Mind that some plugins will be affected by this change, e.g. pulp_container
Yes, we should align this with 3.70.
pedro-psb
Successfully merging a pull request may close this issue.
The
DEFAULT_FILE_STORAGE
option was deprecated in django4.2.0
in favor of another option calledSTORAGES
.Since we're using
django~=4.2.0
, we may want to change our docs (and possibly other places) to use the recommended way.The text was updated successfully, but these errors were encountered: