Skip to content

Commit

Permalink
Merge pull request #23 from internetee/increase-epp-client-timeout
Browse files Browse the repository at this point in the history
Increase EPP client timeout
  • Loading branch information
teadur authored Aug 27, 2019
2 parents 9e7a3d8 + 5e40ced commit 0557c85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/epp_proxy/src/epp_http_client.erl
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ request_from_map(#{command := Command,
hackney_options(Cookies) ->
case application:get_env(epp_proxy, insecure) of
false -> [{cookie, Cookies}, insecure];
_ -> [{cookie, Cookies}]
_ -> [{cookie, Cookies}, {connect_timeout, 120000}, {recv_timeout, 120000}]
end.

%% Return form data or an empty list.
Expand Down

0 comments on commit 0557c85

Please sign in to comment.