From d99bb0d267c0021ba2bd5e98af61c40566e2fa58 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 9 May 2018 06:29:58 -0400 Subject: [PATCH] remove sentry support Signed-off-by: Kenneth Reitz --- httpbin/core.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/httpbin/core.py b/httpbin/core.py index 66a2ed6..e22fea5 100644 --- a/httpbin/core.py +++ b/httpbin/core.py @@ -56,10 +56,6 @@ tmpl_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'templates') app = Flask(__name__, template_folder=tmpl_dir) app.debug = bool(os.environ.get('DEBUG')) -# Send app errors to Sentry. -if 'SENTRY_DSN' in os.environ: - sentry = Sentry(app, dsn=os.environ['SENTRY_DSN']) - # Set up Bugsnag exception tracking, if desired. To use Bugsnag, install the # Bugsnag Python client with the command "pip install bugsnag", and set the # environment variable BUGSNAG_API_KEY. You can also optionally set