diff options
Diffstat (limited to 'python/scripts')
-rwxr-xr-x | python/scripts/deliver_dumpgrobid_to_s3.py | 2 | ||||
-rwxr-xr-x | python/scripts/deliver_gwb_to_disk.py | 2 | ||||
-rwxr-xr-x | python/scripts/deliver_gwb_to_s3.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/python/scripts/deliver_dumpgrobid_to_s3.py b/python/scripts/deliver_dumpgrobid_to_s3.py index a08cab5..27ccf21 100755 --- a/python/scripts/deliver_dumpgrobid_to_s3.py +++ b/python/scripts/deliver_dumpgrobid_to_s3.py @@ -111,7 +111,7 @@ def main(): ) args = parser.parse_args() - sentry_client = sentry_sdk.Client() + sentry_sdk.init() worker = DeliverDumpGrobidS3(**args.__dict__) worker.run(args.dump_file) diff --git a/python/scripts/deliver_gwb_to_disk.py b/python/scripts/deliver_gwb_to_disk.py index 8eb39dd..093f32a 100755 --- a/python/scripts/deliver_gwb_to_disk.py +++ b/python/scripts/deliver_gwb_to_disk.py @@ -187,7 +187,7 @@ def main(): ) args = parser.parse_args() - sentry_sdk.Client() + sentry_sdk.init() worker = DeliverGwbDisk(**args.__dict__) worker.run(args.manifest_file) diff --git a/python/scripts/deliver_gwb_to_s3.py b/python/scripts/deliver_gwb_to_s3.py index 644b134..6f37ede 100755 --- a/python/scripts/deliver_gwb_to_s3.py +++ b/python/scripts/deliver_gwb_to_s3.py @@ -202,7 +202,7 @@ def main(): ) args = parser.parse_args() - sentry_sdk.Client() + sentry_sdk.init() worker = DeliverGwbS3(**args.__dict__) worker.run(args.manifest_file) |