Skip to content

Commit

Permalink
data/file upload max memory size can be upto 200mb
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Sep 13, 2021
1 parent b7dbcda commit dd19756
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,8 @@
FLOWER_PASSWORD = os.environ.get('FLOWER_PASSWORD', 'Root123')
FLOWER_HOST = os.environ.get('FLOWER_HOST', 'flower')
FLOWER_PORT = os.environ.get('FLOWER_PORT', 5555)
DATA_UPLOAD_MAX_MEMORY_SIZE = 100*1024*1024
FILE_UPLOAD_MAX_MEMORY_SIZE = 100*1024*1024
DATA_UPLOAD_MAX_MEMORY_SIZE = 200*1024*1024
FILE_UPLOAD_MAX_MEMORY_SIZE = 200*1024*1024

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

0 comments on commit dd19756

Please sign in to comment.