Skip to content

Commit

Permalink
FILE_UPLOAD_HANDLERS change handlers order (#12817)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiagiupponi authored Jan 15, 2025
1 parent 91f32c6 commit cb3d254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geonode/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2172,8 +2172,8 @@ def get_geonode_catalogue_service():

FILE_UPLOAD_HANDLERS = [
"geonode.upload.uploadhandler.SizeRestrictedFileUploadHandler",
"django.core.files.uploadhandler.MemoryFileUploadHandler",
"django.core.files.uploadhandler.TemporaryFileUploadHandler",
"django.core.files.uploadhandler.MemoryFileUploadHandler",
]

DEFAULT_MAX_UPLOAD_SIZE = int(os.getenv("DEFAULT_MAX_UPLOAD_SIZE", 104857600)) # 100 MB
Expand Down

0 comments on commit cb3d254

Please sign in to comment.