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.ex3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/powerdnsex/http_client.ex b/lib/powerdnsex/http_client.ex
index 3431795..98e299d 100644
--- a/lib/powerdnsex/http_client.ex
+++ b/lib/powerdnsex/http_client.ex
@@ -15,8 +15,7 @@ defmodule PowerDNSex.HttpClient do
end
def process_request_options(options) do
- custom_options = [ssl: [{:versions, [:'tlsv1.1']}], recv_timeout: Config.powerdns_timeout()]
+ custom_options = [ssl: [{:versions, [:"tlsv1.1"]}], recv_timeout: Config.powerdns_timeout()]
Keyword.merge(options, custom_options)
end
-
end