diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-07-20 01:59:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-20 01:59:07 +0200 |
commit | 1fcdaafa6fbe6d746a096c33263d76e6819da46d (patch) | |
tree | f12319e574997bea52eb6074e35e84addcfa78fa /spec/workers/pubsubhubbub/delivery_worker_spec.rb | |
parent | f24b81e27f1c6290cc6f43a71a32200a08c47d1c (diff) |
Fix webfinger retries (#4275)
* Do not raise unretryable exceptions in ResolveRemoteAccountService * Removed fatal exceptions from ResolveRemoteAccountService Exceptions that cannot be retried should not be raised. New exception class for those that can be retried (Mastodon::UnexpectedResponseError)
Diffstat (limited to 'spec/workers/pubsubhubbub/delivery_worker_spec.rb')
-rw-r--r-- | spec/workers/pubsubhubbub/delivery_worker_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/workers/pubsubhubbub/delivery_worker_spec.rb b/spec/workers/pubsubhubbub/delivery_worker_spec.rb index a83245786..b72001568 100644 --- a/spec/workers/pubsubhubbub/delivery_worker_spec.rb +++ b/spec/workers/pubsubhubbub/delivery_worker_spec.rb @@ -26,7 +26,7 @@ describe Pubsubhubbub::DeliveryWorker do subscription = Fabricate(:subscription) stub_request_to_respond_with(subscription, 500) - expect { subject.perform(subscription.id, payload) }.to raise_error(/Delivery failed/) + expect { subject.perform(subscription.id, payload) }.to raise_error Mastodon::UnexpectedResponseError end it 'updates subscriptions when delivery succeeds' do |