commit: a91d968cab5120ca389fcc7d6788cafca85e69e7
parent: 646de92781ba9d211255a7eaf7ebca7b365612f6
Author: ThibG <thib@sitedethib.com>
Date: Mon, 26 Jun 2017 19:39:58 +0200
Raise an error if salmon request response is unsatisfactory (#3960)
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/app/services/send_interaction_service.rb b/app/services/send_interaction_service.rb
@@ -13,7 +13,8 @@ class SendInteractionService < BaseService
return if block_notification?
envelope = salmon.pack(@xml, @source_account.keypair)
- salmon.post(@target_account.salmon_url, envelope)
+ delivery = salmon.post(@target_account.salmon_url, envelope)
+ raise "Delivery failed for #{target_account.salmon_url}: HTTP #{delivery.code}" unless delivery.code > 199 && delivery.code < 300
end
private