summaryrefslogtreecommitdiff
path: root/lib/powerdnsex/http_client.ex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/powerdnsex/http_client.ex')
-rw-r--r--lib/powerdnsex/http_client.ex6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/powerdnsex/http_client.ex b/lib/powerdnsex/http_client.ex
index 13e5023..3431795 100644
--- a/lib/powerdnsex/http_client.ex
+++ b/lib/powerdnsex/http_client.ex
@@ -13,4 +13,10 @@ defmodule PowerDNSex.HttpClient do
custom = ["X-API-Key": Config.powerdns_token()]
Keyword.merge(headers, custom)
end
+
+ def process_request_options(options) do
+ custom_options = [ssl: [{:versions, [:'tlsv1.1']}], recv_timeout: Config.powerdns_timeout()]
+ Keyword.merge(options, custom_options)
+ end
+
end