Enhancement: Increased read timeout for SearchIndexBackend and changed total timeout passed to UserAgent to not overwrite (lower) open- or read timeouts for handling larger payloads.
This commit is contained in:
parent
dd96c57f48
commit
664d433d3a
1 changed files with 2 additions and 1 deletions
|
@ -849,7 +849,7 @@ helper method for making HTTP calls
|
|||
@return UserAgent response
|
||||
|
||||
=end
|
||||
def self.make_request(url, data: {}, method: :get, open_timeout: 8, read_timeout: 60)
|
||||
def self.make_request(url, data: {}, method: :get, open_timeout: 8, read_timeout: 180)
|
||||
Rails.logger.info "# curl -X #{method} \"#{url}\" "
|
||||
Rails.logger.debug { "-d '#{data.to_json}'" } if data.present?
|
||||
|
||||
|
@ -857,6 +857,7 @@ helper method for making HTTP calls
|
|||
json: true,
|
||||
open_timeout: open_timeout,
|
||||
read_timeout: read_timeout,
|
||||
total_timeout: (open_timeout + read_timeout + 60),
|
||||
open_socket_tries: 3,
|
||||
user: Setting.get('es_user'),
|
||||
password: Setting.get('es_password'),
|
||||
|
|
Loading…
Reference in a new issue