Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 30c04bc

Browse files
authored
Merge pull request #175 from edx/edx/kdmccormick/fix-post-course-summaries
Remove limit on HTTP request parameter count
2 parents ff6e105 + 6458d07 commit 30c04bc

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

  • analyticsdataserver/settings

analyticsdataserver/settings/base.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,13 @@
312312
MAX_PAGE_SIZE = 100
313313
AGGREGATE_PAGE_SIZE = 10
314314

315+
# Maximum number of GET/POST parameters that will be read before a
316+
# SuspiciousOperation (TooManyFieldsSent) is raised.
317+
# None indicates no maximum.
318+
# We need to set this to None so that we can pass in a large number of Course IDs
319+
# to course_summaries/
320+
DATA_UPLOAD_MAX_NUMBER_FIELDS = None
321+
315322
########## END ANALYTICS DATA API CONFIGURATION
316323

317324

0 commit comments

Comments
 (0)