Completed
Push — master ( f9bce8...3a72b7 )
by Egor
01:36
created

get_splunk_url()   A

Complexity

Conditions 3

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 5
rs 9.4286
cc 3
1
"""
2
WSGI config for omaha_server project.
3
4
It exposes the WSGI callable as a module-level variable named ``application``.
5
6
For more information on this file, see
7
https://docs.djangoproject.com/en/1.7/howto/deployment/wsgi/
8
"""
9
10
import os
11
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "omaha_server.settings")
12
13
from django.core.wsgi import get_wsgi_application
14
from raven.contrib.django.raven_compat.middleware.wsgi import Sentry
15
16
application = Sentry(get_wsgi_application())
17