Drop RUN_AS_ANALYTICS_SERVER_ENABLED

This is an ancient feature flag that uses an archived and
unsupported support library (edinsights, edx/insights).

DEPR-44
This commit is contained in:
Michael Terry
2019-09-13 09:30:02 -04:00
parent aeecabbe0d
commit 45d48e07cd
2 changed files with 0 additions and 11 deletions

View File

@@ -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,

View File

@@ -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),