aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_import.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2020-01-10 12:40:46 -0800
committerBryan Newbold <bnewbold@robocracy.org>2020-01-10 12:41:54 -0800
commit9cdf476863dd686fa928dfb8a99825a9fd6776fe (patch)
tree61616aa4cdc52f1adf1ebe48b66df268f2177553 /python/fatcat_import.py
parentb3076c623703e6f46155767633e0b428b46da4a1 (diff)
downloadfatcat-9cdf476863dd686fa928dfb8a99825a9fd6776fe.tar.gz
fatcat-9cdf476863dd686fa928dfb8a99825a9fd6776fe.zip
add missing sentry/raven tags
Good to have exceptions tracked and stored even for commands run from the command line. But in particular the importer runs as a kafka worker and should be tracking excpetions.
Diffstat (limited to 'python/fatcat_import.py')
-rwxr-xr-xpython/fatcat_import.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/python/fatcat_import.py b/python/fatcat_import.py
index fb8830ca..5b97d3a8 100755
--- a/python/fatcat_import.py
+++ b/python/fatcat_import.py
@@ -1,10 +1,16 @@
#!/usr/bin/env python3
import os, sys, argparse
+import raven
+
from fatcat_tools import authenticated_api
from fatcat_tools.importers import *
+# Yep, a global. Gets DSN from `SENTRY_DSN` environment variable
+sentry_client = raven.Client()
+
+
def run_crossref(args):
fci = CrossrefImporter(args.api,
args.issn_map_file,