-
Notifications
You must be signed in to change notification settings - Fork 116
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
Django DEFAULT_FILE_STORAGE
deprecated
#5404
Comments
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 The advantage over doing anything is that we can update our code right away. |
Mind that some plugins will be affected by this change, e.g. pulp_container |
Yes, we should align this with 3.70. |
The DEFAULT_FILE_STORAGE option was deprecated in django 4.2.0 in favor of another option called STORAGES. fixes pulp#5404
The DEFAULT_FILE_STORAGE option was deprecated in django 4.2.0 in favor of another option called STORAGES. fixes pulp#5404
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: