Skip to content

Commit

Permalink
Merge pull request #190 from elomar/patch-1
Browse files Browse the repository at this point in the history
Don't convert port to string on Excon adapter
  • Loading branch information
rogerleite authored Feb 21, 2018
2 parents ec33bab + 98d5aa2 commit c505eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/httpi/adapter/excon.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def client_opts
opts = {
:host => url.host,
:path => url.path,
:port => url.port.to_s,
:port => url.port,
:query => url.query,
:scheme => url.scheme,
:headers => @request.headers,
Expand Down

0 comments on commit c505eda

Please sign in to comment.