From 527202e9b3da88336d7b6ae589423166285ddaf4 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 15 Jan 2020 22:47:38 -0800 Subject: improve sentry reporting with 'release' git hash --- python/sandcrawler_worker.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'python/sandcrawler_worker.py') diff --git a/python/sandcrawler_worker.py b/python/sandcrawler_worker.py index b164b8e..12b8bb9 100755 --- a/python/sandcrawler_worker.py +++ b/python/sandcrawler_worker.py @@ -15,7 +15,11 @@ import raven from sandcrawler import * # Yep, a global. Gets DSN from `SENTRY_DSN` environment variable -sentry_client = raven.Client() +try: + git_sha = raven.fetch_git_sha('..') +except Exception as e: + git_sha = None +sentry_client = raven.Client(release=git_sha) def run_grobid_extract(args): -- cgit v1.2.3