about summary refs log tree commit diff
path: root/app/services/subscribe_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/subscribe_service.rb
parentc6f76db2e16decc1bc1483e616933f561d627c36 (diff)
Close connection when succeeded posting (#5390)
* Close connection when succeeded posting

* Update webmock
Diffstat (limited to 'app/services/subscribe_service.rb')
-rw-r--r--app/services/subscribe_service.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/services/subscribe_service.rb b/app/services/subscribe_service.rb
index 2d8af0203..2f725e2ec 100644
--- a/app/services/subscribe_service.rb
+++ b/app/services/subscribe_service.rb
@@ -6,7 +6,7 @@ class SubscribeService < BaseService
 
     @account        = account
     @account.secret = SecureRandom.hex
-    @response       = build_request.perform.flush
+    @response       = build_request.perform
 
     if response_failed_permanently?
       # We're not allowed to subscribe. Fail and move on.
@@ -20,6 +20,7 @@ class SubscribeService < BaseService
       # We need to retry at a later time. Fail loudly!
       raise Mastodon::UnexpectedResponseError, @response
     end
+    @response.connection&.close
   end
 
   private