Skip to content

Commit 0557c85

Browse files
authored
Merge pull request #23 from internetee/increase-epp-client-timeout
Increase EPP client timeout
2 parents 9e7a3d8 + 5e40ced commit 0557c85

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/epp_proxy/src/epp_http_client.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ request_from_map(#{command := Command,
8585
hackney_options(Cookies) ->
8686
case application:get_env(epp_proxy, insecure) of
8787
false -> [{cookie, Cookies}, insecure];
88-
_ -> [{cookie, Cookies}]
88+
_ -> [{cookie, Cookies}, {connect_timeout, 120000}, {recv_timeout, 120000}]
8989
end.
9090

9191
%% Return form data or an empty list.

0 commit comments

Comments
 (0)