mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-24 11:33:47 -05:00
Merge branch 'master' into skylight
This commit is contained in:
commit
7f7a67a7c1
@ -22,6 +22,7 @@ class Pubsubhubbub::DeliveryWorker
|
|||||||
.headers(headers)
|
.headers(headers)
|
||||||
.post(subscription.callback_url, body: payload)
|
.post(subscription.callback_url, body: payload)
|
||||||
|
|
||||||
|
return subscription.destroy! if response.code > 299 && response.code < 500 && response.code != 429 # HTTP 4xx means error is not temporary, except for 429 (throttling)
|
||||||
raise "Delivery failed for #{subscription.callback_url}: HTTP #{response.code}" unless response.code > 199 && response.code < 300
|
raise "Delivery failed for #{subscription.callback_url}: HTTP #{response.code}" unless response.code > 199 && response.code < 300
|
||||||
|
|
||||||
subscription.touch(:last_successful_delivery_at)
|
subscription.touch(:last_successful_delivery_at)
|
||||||
|
@ -23,6 +23,7 @@ RSpec.describe FanOutOnWriteService do
|
|||||||
end
|
end
|
||||||
|
|
||||||
it 'delivers status to local followers' do
|
it 'delivers status to local followers' do
|
||||||
|
pending 'some sort of problem in test environment causes this to sometimes fail'
|
||||||
expect(Feed.new(:home, follower).get(10).map(&:id)).to include status.id
|
expect(Feed.new(:home, follower).get(10).map(&:id)).to include status.id
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user