Revert "Increase assignment upload limit from 4MB to 20MB (#21589)"

The reverted commit did not make the intended change.

This reverts commit 7e928ade22.
This commit is contained in:
Kyle McCormick
2019-09-09 16:53:51 -04:00
committed by Kyle McCormick
parent 3e4e027234
commit e09e172f77

View File

@@ -736,7 +736,7 @@ AUTHENTICATION_BACKENDS = [
'bridgekeeper.backends.RulePermissionBackend',
]
STUDENT_FILEUPLOAD_MAX_SIZE = 20 * 1000 * 1000 # 20 MB
STUDENT_FILEUPLOAD_MAX_SIZE = 4 * 1000 * 1000 # 4 MB
MAX_FILEUPLOADS_PER_INPUT = 20
# Set request limits for maximum size of a request body and maximum number of GET/POST parameters. (>=Django 1.10)