Skip to content

Commit

Permalink
Merge pull request #2163 from DanCech/url-warnings
Browse files Browse the repository at this point in the history
ignore bogus url warnings, update INSTALLED_APPS
  • Loading branch information
DanCech committed Dec 20, 2017
2 parents 018356b + 16b9fe0 commit b0246b1
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions webapp/graphite/app_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
APPEND_SLASH = False
TEMPLATE_DEBUG = False

SILENCED_SYSTEM_CHECKS = ['urls.W002']

TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
Expand Down Expand Up @@ -72,16 +74,17 @@
ROOT_URLCONF = 'graphite.urls'

INSTALLED_APPS = (
'graphite.metrics',
'graphite.render',
'graphite.account',
'graphite.browser',
'graphite.composer',
'graphite.account',
'graphite.dashboard',
'graphite.whitelist',
'graphite.events',
'graphite.url_shortener',
'graphite.functions',
'graphite.metrics',
'graphite.render',
'graphite.tags',
'graphite.url_shortener',
'graphite.whitelist',
'django.contrib.auth',
'django.contrib.sessions',
'django.contrib.admin',
Expand Down

0 comments on commit b0246b1

Please sign in to comment.