From d77cadfd7c26f909aede36e39d6b65c83e8497a9 Mon Sep 17 00:00:00 2001 From: Stephen Paul Weber Date: Tue, 30 Jan 2024 15:10:36 -0500 Subject: [PATCH] Downgrade to error from fatal --- sgx_jmp.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sgx_jmp.rb b/sgx_jmp.rb index e5a4eacce8b3f3f00b259a0bc1d3c12718055fa8..210ca627c75049e05500c7d7ea75f925567c504e 100644 --- a/sgx_jmp.rb +++ b/sgx_jmp.rb @@ -186,7 +186,7 @@ def poll_for_notify(db) DbNotification.for(notify, customer, repo) end }.then(&:call).catch { |e| - log.fatal("Error during poll_for_notify", e) + log.error("Error during poll_for_notify", e) Sentry.capture_exception(e) }.then { EM.add_timer(0.5) { poll_for_notify(db) } } end