Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
0.4.5
====================
* Remove coverage
* Remove statsd, django-statsd-mozilla

0.4.4 (2025-03-20)
====================
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,10 @@ The following libraries are used in some way, so they'll need to be installed:
* django-debug-toolbar
* django-smoketest
* django-extensions
* django-statsd-mozilla
* django-storages
* django-impersonate
* boto3
* sentry-sdk
* statsd
* gunicorn

### Use it
Expand Down
9 changes: 0 additions & 9 deletions ctlsettings/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,6 @@ def common(**kwargs):
]

MIDDLEWARE = [
'django_statsd.middleware.GraphiteRequestTimingMiddleware',
'django_statsd.middleware.GraphiteMiddleware',

'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
Expand All @@ -161,7 +158,6 @@ def common(**kwargs):
'django.contrib.staticfiles',
'django.contrib.messages',
'django.contrib.admin',
'django_statsd',
'smoketest',
'gunicorn',
'impersonate',
Expand All @@ -171,11 +167,6 @@ def common(**kwargs):

INTERNAL_IPS = ['127.0.0.1']

STATSD_CLIENT = 'statsd.client'
STATSD_PREFIX = project
STATSD_HOST = 'localhost'
STATSD_PORT = 8125

THUMBNAIL_SUBDIR = "thumbs"
EMAIL_SUBJECT_PREFIX = "[" + project + "] "
EMAIL_HOST = 'localhost'
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,10 @@
'django-debug-toolbar',
'django-smoketest',
'django-extensions',
'django-statsd-mozilla',
'sentry-sdk',
'django-storages',
'boto3',
'requests',
'statsd',
'gunicorn',
'django-impersonate',
],
Expand Down