about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--app/lib/request.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/request.rb b/app/lib/request.rb
index 5186bb5a3..f2905c462 100644
--- a/app/lib/request.rb
+++ b/app/lib/request.rb
@@ -79,7 +79,7 @@ class Request
       %w(http https).include?(parsed_url.scheme) && parsed_url.host.present?
     end
     def http_client
-      HTTP.use(:auto_inflate).timeout(:per_operation, TIMEOUT.dup).follow(max_hops: 2)
+      HTTP.use(:auto_inflate).timeout(TIMEOUT.dup).follow(max_hops: 2)
     end
   end