Skip to content

Commit 2fae1e0

Browse files
committed
Update :http_connection_settings to :http_options
This better reflects the functionality as any option may be passed to the http layer.
1 parent ccd12b2 commit 2fae1e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/http.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ function http_request(request::AWSRequest)
2626
push!(options, (:response_stream, io))
2727
end
2828

29-
if haskey(request, :http_connection_settings)
30-
for v in request[:http_connection_settings]
29+
if haskey(request, :http_options)
30+
for v in request[:http_options]
3131
push!(options, v)
3232
end
3333
end

0 commit comments

Comments
 (0)