add a new cms ENV configuration to use a slow upload file handler to help test progress bars in uploads
This commit is contained in:
committed by
David Baumgold
parent
e6a84f84b2
commit
b43f1c7331
7
cms/envs/debug_upload.py
Normal file
7
cms/envs/debug_upload.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from .dev import *
|
||||
|
||||
FILE_UPLOAD_HANDLERS = (
|
||||
'contentstore.debug_file_uploader.DebugFileUploader',
|
||||
'django.core.files.uploadhandler.MemoryFileUploadHandler',
|
||||
'django.core.files.uploadhandler.TemporaryFileUploadHandler',
|
||||
)
|
||||
Reference in New Issue
Block a user