mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-20 03:25:17 +01:00
Change ActivityPub::DeliveryWorker to not retry HTTP 501 errors (#11233)
This commit is contained in:
parent
dc88d226e1
commit
bc60d794f8
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user