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 committed by GitHub
parent dc88d226e1
commit bc60d794f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,7 +54,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