Skip to content

Commit 25a8f97

Browse files
ankanecodejudas
authored andcommitted
Fixed proxy interpolation (#365)
1 parent 0b4eea3 commit 25a8f97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/twilio-ruby/http/http_client.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def _request(request)
2525
f.headers = request.headers
2626
f.basic_auth(request.auth[0], request.auth[1])
2727
if @proxy_addr
28-
f.proxy '#{@proxy_user}:#{@proxy_pass}@#{@proxy_addr}:#{@proxy_port}'
28+
f.proxy "#{@proxy_user}:#{@proxy_pass}@#{@proxy_addr}:#{@proxy_port}"
2929
end
3030
f.options.open_timeout = request.timeout || @timeout
3131
f.options.timeout = request.timeout || @timeout

0 commit comments

Comments
 (0)