aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_cleanup.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2022-02-25 11:40:04 -0800
committerBryan Newbold <bnewbold@robocracy.org>2022-02-25 11:40:46 -0800
commit3c2ac30e23744e38aa84f3a673b4cc644bd76c37 (patch)
treea38b6a677c7dc70b77a29ed16731f5fffb5defa8 /python/fatcat_cleanup.py
parent45464ab2a9ccc18b5440a531dc2e4fdf6508a342 (diff)
downloadfatcat-3c2ac30e23744e38aa84f3a673b4cc644bd76c37.tar.gz
fatcat-3c2ac30e23744e38aa84f3a673b4cc644bd76c37.zip
update sentry SDK configuration
Diffstat (limited to 'python/fatcat_cleanup.py')
-rwxr-xr-xpython/fatcat_cleanup.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/python/fatcat_cleanup.py b/python/fatcat_cleanup.py
index b5e50425..b2bd4f0f 100755
--- a/python/fatcat_cleanup.py
+++ b/python/fatcat_cleanup.py
@@ -9,9 +9,6 @@ import sentry_sdk
from fatcat_tools import authenticated_api
from fatcat_tools.cleanups import FileCleaner, JsonLinePusher
-# Yep, a global. Gets DSN from `SENTRY_DSN` environment variable
-sentry_client = sentry_sdk.init()
-
def run_files(args: argparse.Namespace) -> None:
fmi = FileCleaner(
@@ -71,6 +68,7 @@ def main() -> None:
# token is an optional kwarg (can be empty string, None, etc)
token=os.environ.get(args.auth_var),
)
+ sentry_sdk.init(environment=args.env)
args.func(args)