about summary refs log tree commit diff
path: root/app/services/unsubscribe_service.rb
diff options
context:
space:
mode:
authorabcang <abcang1015@gmail.com>2017-10-14 21:38:57 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-10-14 14:38:57 +0200
commit2eab41cd1a38fd382a735f32c6ecba7ec193f6f2 (patch)
treed48bce55d3f908ab17848e4f7e415ae9d98982e4 /app/services/unsubscribe_service.rb
parentc6f76db2e16decc1bc1483e616933f561d627c36 (diff)
Close connection when succeeded posting (#5390)
* Close connection when succeeded posting

* Update webmock
Diffstat (limited to 'app/services/unsubscribe_service.rb')
-rw-r--r--app/services/unsubscribe_service.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/services/unsubscribe_service.rb b/app/services/unsubscribe_service.rb
index d84a5a530..01f5c6b7a 100644
--- a/app/services/unsubscribe_service.rb
+++ b/app/services/unsubscribe_service.rb
@@ -7,9 +7,10 @@ class UnsubscribeService < BaseService
     @account = account
 
     begin
-      @response = build_request.perform.flush
+      @response = build_request.perform
 
       Rails.logger.debug "PuSH unsubscribe for #{@account.acct} failed: #{@response.status}" unless @response.status.success?
+      @response.connection&.close
     rescue HTTP::Error, OpenSSL::SSL::SSLError => e
       Rails.logger.debug "PuSH unsubscribe for #{@account.acct} failed: #{e}"
     end