Skip to content
Snippets Groups Projects
Unverified Commit e80b76c3 authored by Michael Terry's avatar Michael Terry Committed by GitHub
Browse files

Merge pull request #21659 from edx/mikix/depr-44

Drop RUN_AS_ANALYTICS_SERVER_ENABLED
parents aeecabbe 45d48e07
No related merge requests found
......@@ -158,12 +158,6 @@ FEATURES = {
# Set to hide the courses list on the Learner Dashboard if they are not enrolled in any courses yet.
'HIDE_DASHBOARD_COURSES_UNTIL_ACTIVATED': False,
# enable analytics server.
# WARNING: THIS SHOULD ALWAYS BE SET TO FALSE UNDER NORMAL
# LMS OPERATION. See analytics.py for details about what
# this does.
'RUN_AS_ANALYTICS_SERVER_ENABLED': False,
# Give a UI to show a student's submission history in a problem by the
# Staff Debug tool.
'ENABLE_STUDENT_HISTORY_VIEW': True,
......
......@@ -830,11 +830,6 @@ if settings.FEATURES.get('ENABLE_INSTRUCTOR_BACKGROUND_TASKS'):
),
]
if settings.FEATURES.get('RUN_AS_ANALYTICS_SERVER_ENABLED'):
urlpatterns += [
url(r'^edinsights_service/', include('edinsights.core.urls')),
]
if settings.FEATURES.get('ENABLE_DEBUG_RUN_PYTHON'):
urlpatterns += [
url(r'^debug/run_python$', debug_views.run_python),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment