Change ActivityPub::DeliveryWorker to not retry HTTP 501 errors (#11233)

This commit is contained in:
Eugen Rochko 2019-07-02 00:59:53 +02:00
parent d9a024840e
commit f2795699dd
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class ActivityPub::DeliveryWorker
end
def response_error_unsalvageable?(response)
(400...500).cover?(response.code) && ![401, 408, 429].include?(response.code)
response.code == 501 || ((400...500).cover?(response.code) && ![401, 408, 429].include?(response.code))
end
def failure_tracker