Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-analytics-data-api
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-analytics-data-api
Commits
30c04bc9
Commit
30c04bc9
authored
Jun 23, 2017
by
Kyle McCormick
Committed by
GitHub
Jun 23, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #175 from edx/edx/kdmccormick/fix-post-course-summaries
Remove limit on HTTP request parameter count
parents
ff6e1057
6458d07e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
analyticsdataserver/settings/base.py
+7
-0
No files found.
analyticsdataserver/settings/base.py
View file @
30c04bc9
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment