Commit 30c04bc9 by Kyle McCormick Committed by GitHub

Merge pull request #175 from edx/edx/kdmccormick/fix-post-course-summaries

Remove limit on HTTP request parameter count
parents ff6e1057 6458d07e
...@@ -312,6 +312,13 @@ DEFAULT_PAGE_SIZE = 25 ...@@ -312,6 +312,13 @@ DEFAULT_PAGE_SIZE = 25
MAX_PAGE_SIZE = 100 MAX_PAGE_SIZE = 100
AGGREGATE_PAGE_SIZE = 10 AGGREGATE_PAGE_SIZE = 10
# Maximum number of GET/POST parameters that will be read before a
# SuspiciousOperation (TooManyFieldsSent) is raised.
# None indicates no maximum.
# We need to set this to None so that we can pass in a large number of Course IDs
# to course_summaries/
DATA_UPLOAD_MAX_NUMBER_FIELDS = None
########## END ANALYTICS DATA API CONFIGURATION ########## END ANALYTICS DATA API CONFIGURATION
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment