Downgrade to error from fatal

Stephen Paul Weber created

Change summary

sgx_jmp.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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