Commit 6458d07e by Kyle McCormick

Remove limit on HTTP request parameter count

Fixes bug where course_summaries/ gives a 400 because more course IDs
were being passed in than allowed.
parent ff6e1057
...@@ -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