Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
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-platform
Commits
d7bab033
Commit
d7bab033
authored
Nov 02, 2017
by
John Eskew
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move monitoring functionality to util and AppConfig.
parent
65433c9c
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
18 deletions
+8
-18
cms/envs/common.py
+0
-3
lms/envs/common.py
+0
-3
openedx/core/djangoapps/monitoring/README.rst
+0
-6
openedx/core/djangoapps/monitoring/__init__.py
+0
-0
openedx/core/djangoapps/monitoring/startup.py
+0
-5
openedx/core/djangoapps/util/apps.py
+8
-1
openedx/core/djangoapps/util/signals.py
+0
-0
No files found.
cms/envs/common.py
View file @
d7bab033
...
...
@@ -1006,9 +1006,6 @@ INSTALLED_APPS = [
# Signals
'openedx.core.djangoapps.signals.apps.SignalConfig'
,
# Monitoring signals
'openedx.core.djangoapps.monitoring'
,
# Course action state
'course_action_state'
,
...
...
lms/envs/common.py
View file @
d7bab033
...
...
@@ -2199,9 +2199,6 @@ INSTALLED_APPS = [
# Country embargo support
'openedx.core.djangoapps.embargo'
,
# Monitoring functionality
'openedx.core.djangoapps.monitoring'
,
# Course action state
'course_action_state'
,
...
...
openedx/core/djangoapps/monitoring/README.rst
deleted
100644 → 0
View file @
65433c9c
This djangoapp is incorrectly named 'monitoring'.
The name is related to old functionality that used to be a part of this app.
TODO: The current contents of this app should be joined with other generic
platform utilities and renamed appropriately.
openedx/core/djangoapps/monitoring/__init__.py
deleted
100644 → 0
View file @
65433c9c
openedx/core/djangoapps/monitoring/startup.py
deleted
100644 → 0
View file @
65433c9c
"""
Registers signal handlers at startup.
"""
# pylint: disable=unused-import
import
openedx.core.djangoapps.monitoring.exceptions
openedx/core/djangoapps/util/apps.py
View file @
d7bab033
...
...
@@ -7,8 +7,15 @@ from django.apps import AppConfig
class
UtilConfig
(
AppConfig
):
"""
Let Django know that this is an app with management commands.
Configuration class for the openedx.core.djangoapps.util Django application
"""
label
=
'open_edx_util'
name
=
'openedx.core.djangoapps.util'
verbose_name
=
'Open edX Utilities'
def
ready
(
self
):
"""
Registers signal handlers at startup.
"""
# pylint: disable=unused-import
import
openedx.core.djangoapps.util.signals
openedx/core/djangoapps/
monitoring/exception
s.py
→
openedx/core/djangoapps/
util/signal
s.py
View file @
d7bab033
File moved
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