From 13d2364fd5b1f9108c9b7e049eb23c5825dfae62 Mon Sep 17 00:00:00 2001 From: Pierre de La Morinerie Date: Tue, 4 May 2021 08:57:33 +0200 Subject: [PATCH] jobs: add Excon::Error::Socket to the list of transient errors In ActiveStorage::Purge job we see a lot of SSL errors: > Connection reset by peer - SSL_connect (Errno::ECONNRESET) These errors seem transient, and resolve themselves after a while. --- app/lib/active_job/retry_on_transient_errors.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/lib/active_job/retry_on_transient_errors.rb b/app/lib/active_job/retry_on_transient_errors.rb index b3790359c..cf714174a 100644 --- a/app/lib/active_job/retry_on_transient_errors.rb +++ b/app/lib/active_job/retry_on_transient_errors.rb @@ -4,7 +4,8 @@ module ActiveJob::RetryOnTransientErrors TRANSIENT_ERRORS = [ Excon::Error::InternalServerError, Excon::Error::GatewayTimeout, - Excon::Error::BadRequest + Excon::Error::BadRequest, + Excon::Error::Socket ] included do