From daee86b91969e1d7af5154cb9165b1fd321db239 Mon Sep 17 00:00:00 2001 From: Alex Cabal Date: Tue, 29 Apr 2025 12:48:17 -0500 Subject: [PATCH] Don't re-throw after logging them when ingesting FA payments --- scripts/ingest-fa-payments | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/ingest-fa-payments b/scripts/ingest-fa-payments index b2f227ec..3fd565d2 100755 --- a/scripts/ingest-fa-payments +++ b/scripts/ingest-fa-payments @@ -220,8 +220,6 @@ catch(Exception $ex){ $em->Body = Template::EmailDonationProcessingFailed(exception: preg_replace('/^/m', "\t", $exceptionString)); $em->TextBody = Template::EmailDonationProcessingFailedText(exception: preg_replace('/^/m', "\t", $exceptionString)); $em->Send(); - - throw $ex; } finally{ // `$driver` may be unintialized if we ctrl + c during Selenium initialization.