Removed inclusion of revision in bugsnag.configure()

The revision should be passed to another endpoint (see deploy.sh)
This commit is contained in:
Sybren A. Stüvel 2016-07-20 14:10:06 +02:00
parent 589d916759
commit d34d129a2f

View File

@ -137,7 +137,6 @@ if not app.config.get('TESTING') and app.config.get('BUGSNAG_API_KEY'):
bugsnag.configure( bugsnag.configure(
api_key=app.config['BUGSNAG_API_KEY'], api_key=app.config['BUGSNAG_API_KEY'],
project_root="/data/git/pillar/pillar", project_root="/data/git/pillar/pillar",
revision=app.config['GIT_REVISION'],
) )
bugsnag.flask.handle_exceptions(app) bugsnag.flask.handle_exceptions(app)