From 14801e7ae2633b7c22ff31f58e656d587efe8ad0 Mon Sep 17 00:00:00 2001 From: Ayush Goyal <36241930+agl29@users.noreply.github.com> Date: Mon, 19 Sep 2022 11:28:11 +0530 Subject: [PATCH] [importer] increasing the value of DATA_UPLOAD_MAX_MEMORY_SIZE to 5MB as sometime request size > 2.5MB (default value) (#2966) --- desktop/core/src/desktop/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/core/src/desktop/settings.py b/desktop/core/src/desktop/settings.py index e249e455de5..71a47b50d5c 100644 --- a/desktop/core/src/desktop/settings.py +++ b/desktop/core/src/desktop/settings.py @@ -117,6 +117,7 @@ # Examples: "http://media.lawrence.com/media/", "http://example.com/media/" MEDIA_URL = '' +DATA_UPLOAD_MAX_MEMORY_SIZE = 5242880 # Setting this variable to 5MB as sometime request size > 2.5MB (default value) ############################################################ # Part 3: Django configuration