Catch common `ShareWorker` exceptions to avoid unnecessary retries

This commit is contained in:
Karina Kwiatek 2021-12-27 17:44:42 +01:00
parent b544145b93
commit 58a5065e52
1 changed files with 9 additions and 0 deletions

View File

@ -11,6 +11,15 @@ class ShareWorker
user_service = User.find(user_id).services.find_by(type: service_type)
user_service.post(Answer.find(answer_id))
rescue ActiveRecord::RecordNotFound
# The question to be posted was deleted
return
rescue Twitter::Error::DuplicateStatus
return
rescue Twitter::Error::Unauthorized
# User's Twitter token has expired or been revoked
# TODO: Notify user if this happens (https://github.com/Retrospring/retrospring/issues/123)
return
rescue => e
logger.info "failed to post answer #{answer_id} to #{service} for user #{user_id}: #{e.message}"
NewRelic::Agent.notice_error(e)