From 9c0aeb038b5e3763efb21445d3be4099518fdbd1 Mon Sep 17 00:00:00 2001 From: Ivlev Denis Date: Fri, 27 Apr 2018 07:51:06 +0300 Subject: [PATCH] Fix raven dsn --- .env.example | 2 +- project/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 7d620618..a1992012 100644 --- a/.env.example +++ b/.env.example @@ -19,4 +19,4 @@ TWILIO_FROM_PHONE=+37128914409 PAYMENTWALL_APP_KEY=d6f02b90cf6b16220932f4037578aff7 PAYMENTWALL_SECRET_KEY=4ea515bf94e34cf28646c2e12a7b8707 MIXPANEL_TOKEN=79bd6bfd98667ed977737e6810b8abcd -RAVEN_DSN=https://bff536c4d71c4166afb91f83b9f73d55:ca47ad791a53480b9d40a85a26abf141@sentry.io/306843 +RAVEN_DSN=https://b545dac0ae0545a1bcfc443326fe5850:6f9c900cef7f4c11b63561030b37d15c@sentry.io/1197254 diff --git a/project/settings.py b/project/settings.py index e0541df7..bc021332 100644 --- a/project/settings.py +++ b/project/settings.py @@ -250,7 +250,7 @@ SWAGGER_SETTINGS = { # Raven settings RAVEN_CONFIG = { - 'dsn': os.getenv('RAVEN_DSN', 'https://bff536c4d71c4166afb91f83b9f73d55:ca47ad791a53480b9d40a85a26abf141@sentry.io/306843'), + 'dsn': os.getenv('RAVEN_DSN', 'https://b545dac0ae0545a1bcfc443326fe5850:6f9c900cef7f4c11b63561030b37d15c@sentry.io/1197254'), # If you are using git, you can also automatically configure the # release based on the git info. 'release': raven.fetch_git_sha(BASE_DIR),