diff --git a/config.py.example b/config.py.example index 8c5ff4073..2a202d6a5 100644 --- a/config.py.example +++ b/config.py.example @@ -47,17 +47,6 @@ RATELIMIT_WINDOW = 10 # 'backup_count': 10, # optional # } -# LOG_EMAIL = { -# 'mail_server': 'localhost', -# 'mail_port': 25, -# 'mail_from_host': 'acousticbrainz.org', -# 'log_email_recipients': [ -# '', -# ], -# 'log_email_topic': 'AcousticBrainz Error', -# 'level': 'ERROR', -# } - # LOG_SENTRY = { # 'dsn':'', # 'environment': 'development', diff --git a/requirements.txt b/requirements.txt index ac02c7896..05634d7a4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -git+https://github.com/metabrainz/brainzutils-python.git@v1.16.1 +git+https://github.com/metabrainz/brainzutils-python.git@v1.18.0 Flask-Admin==1.5.6 Flask-Login==0.5.0 Flask-SQLAlchemy==2.4.1 @@ -19,7 +19,7 @@ Jinja2==2.11.2 werkzeug==1.0.1 Flask-DebugToolbar==0.11.0 Flask-UUID==0.2 -raven[flask]==6.10.0 +sentry-sdk[flask]==0.20.3 certifi redis==3.4.1 msgpack-python==0.5.6 diff --git a/webserver/__init__.py b/webserver/__init__.py index 796dc14ca..131f80519 100644 --- a/webserver/__init__.py +++ b/webserver/__init__.py @@ -58,7 +58,6 @@ def create_app(debug=None): # Logging app.init_loggers(file_config=app.config.get('LOG_FILE'), - email_config=app.config.get('LOG_EMAIL'), sentry_config=app.config.get('LOG_SENTRY') )