Skip to content

Commit

Permalink
No Need to explicitly refer class for the method call.
Browse files Browse the repository at this point in the history
  • Loading branch information
zaidakram committed Jan 10, 2015
1 parent a163f38 commit b042a43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/expedia/http_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def make_request(path, args, verb, options = {})
request_options = {:params => (verb == :get ? args : {})}
# set up our Faraday connection
conn = Faraday.new(server(options), request_options)
conn = HTTPService.add_timeouts(conn, options)
conn = add_timeouts(conn, options)
response = conn.send(verb, path, (verb == :post ? args : {}))

# Log URL and params information
Expand Down

0 comments on commit b042a43

Please sign in to comment.