From 9cdf476863dd686fa928dfb8a99825a9fd6776fe Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Fri, 10 Jan 2020 12:40:46 -0800 Subject: 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. --- python/fatcat_cleanup.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'python/fatcat_cleanup.py') diff --git a/python/fatcat_cleanup.py b/python/fatcat_cleanup.py index a7c80965..d8b2aea2 100755 --- a/python/fatcat_cleanup.py +++ b/python/fatcat_cleanup.py @@ -1,11 +1,17 @@ #!/usr/bin/env python3 import os, sys, argparse +import raven + from fatcat_tools import authenticated_api from fatcat_tools.importers import JsonLinePusher from fatcat_tools.cleanups import * +# Yep, a global. Gets DSN from `SENTRY_DSN` environment variable +sentry_client = raven.Client() + + def run_files(args): fmi = FileCleaner(args.api, dry_run_mode=args.dry_run, -- cgit v1.2.3