Skip to content

Commit dd19756

Browse files
committed
data/file upload max memory size can be upto 200mb
1 parent b7dbcda commit dd19756

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -338,8 +338,8 @@
338338
FLOWER_PASSWORD = os.environ.get('FLOWER_PASSWORD', 'Root123')
339339
FLOWER_HOST = os.environ.get('FLOWER_HOST', 'flower')
340340
FLOWER_PORT = os.environ.get('FLOWER_PORT', 5555)
341-
DATA_UPLOAD_MAX_MEMORY_SIZE = 100*1024*1024
342-
FILE_UPLOAD_MAX_MEMORY_SIZE = 100*1024*1024
341+
DATA_UPLOAD_MAX_MEMORY_SIZE = 200*1024*1024
342+
FILE_UPLOAD_MAX_MEMORY_SIZE = 200*1024*1024
343343

344344
# Mail settings
345345
EMAIL_HOST = os.environ.get('EMAIL_HOST', 'smtp.gmail.com')

0 commit comments

Comments
 (0)