debug_upload.py 418 Bytes
Newer Older
1 2 3 4
"""
A new cms ENV configuration to use a slow upload file handler to help test
progress bars in uploads
"""
5
# pylint: disable=unused-wildcard-import
6
from .dev import *  # pylint: disable=wildcard-import
7 8 9 10 11 12

FILE_UPLOAD_HANDLERS = (
    'contentstore.debug_file_uploader.DebugFileUploader',
    'django.core.files.uploadhandler.MemoryFileUploadHandler',
    'django.core.files.uploadhandler.TemporaryFileUploadHandler',
)