You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rails.logger.warn("Retrying #{self.class.name} (#{retry_count}/#{max_retries}) after #{wait_seconds}s due to #{exception.class}: #{exception.message}")
Rails.logger.error("#{self.class.name} failed permanently after #{max_retries} attempts")
22
-
end
17
+
ifretry_count <= max_retries
18
+
Rails.logger.warn("Retrying #{self.class.name} (#{retry_count}/#{max_retries}) after #{wait_seconds}s due to #{exception.class}: #{exception.message}")
0 commit comments