Move service_status from common into openedx

This commit is contained in:
Andy Armstrong
2016-10-06 13:37:35 -04:00
parent f0550b15f3
commit a75f64b6c0
10 changed files with 22 additions and 21 deletions

View File

@@ -808,7 +808,7 @@ INSTALLED_APPS = (
'config_models',
# Monitor the status of services
'service_status',
'openedx.core.djangoapps.service_status',
# Testing
'django_nose',

View File

@@ -148,7 +148,7 @@ if settings.FEATURES.get('ENABLE_EXPORT_GIT'):
if settings.FEATURES.get('ENABLE_SERVICE_STATUS'):
urlpatterns += patterns(
'',
url(r'^status/', include('service_status.urls')),
url(r'^status/', include('openedx.core.djangoapps.service_status.urls')),
)
if settings.FEATURES.get('AUTH_USE_CAS'):