Revert connect timeout from 1s to 10s (#9319)

The failure rate in Sidekiq is too high
master
Eugen Rochko 6 years ago committed by GitHub
parent c66739b418
commit 384e953b75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/lib/request.rb

@ -94,7 +94,7 @@ class Request
end
def timeout
{ connect: 1, read: 10, write: 10 }
{ connect: 10, read: 10, write: 10 }
end
def http_client

Loading…
Cancel
Save